#include "src/core/SkMemset.h"
#include "tests/Test.h"
#include <cstddef>
#include <cstdint>
Go to the source code of this file.
◆ MAX_ALIGNMENT
◆ MAX_COUNT
◆ PAD
◆ TOTAL
◆ VALUE16
◆ VALUE32
#define VALUE32 0x12345678 |
◆ compare16()
◆ compare32()
◆ DEF_TEST()
Test SkOpts::memset16 and SkOpts::memset32. For performance considerations, implementations may take different paths depending on the alignment of the dst, and/or the size of the count.
Definition at line 88 of file MemsetTest.cpp.
88 {
91}
static void test_32(skiatest::Reporter *reporter)
static void test_16(skiatest::Reporter *reporter)
◆ set_zero()
static void set_zero |
( |
void * |
dst, |
|
|
size_t |
bytes |
|
) |
| |
|
static |
Definition at line 14 of file MemsetTest.cpp.
14 {
15 char* ptr = (
char*)
dst;
16 for (
size_t i = 0;
i < bytes; ++
i) {
18 }
19}
◆ test_16()
Definition at line 49 of file MemsetTest.cpp.
49 {
51
53 for (
int alignment = 0; alignment <
MAX_ALIGNMENT; ++alignment) {
55
58
62 }
63 }
64}
static void compare16(skiatest::Reporter *r, const uint16_t base[], uint16_t value, int count)
static void set_zero(void *dst, size_t bytes)
void(* memset16)(uint16_t[], uint16_t, int)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
◆ test_32()
Definition at line 66 of file MemsetTest.cpp.
66 {
68
70 for (
int alignment = 0; alignment <
MAX_ALIGNMENT; ++alignment) {
72
75
79 }
80 }
81}
static void compare32(skiatest::Reporter *r, const uint32_t base[], uint32_t value, int count)
void(* memset32)(uint32_t[], uint32_t, int)