/external/valgrind/main/memcheck/tests/ |
sh-mem-random.c | 105 #define N_BYTES 300000 106 #define N_EVENTS (5 * N_BYTES) 119 for (i = 0; i < N_BYTES; i++) 123 check(arr, N_BYTES, "after initialisation"); 131 src = (randomU4() >> 1) % N_BYTES; 132 dst = (randomU4() >> 3) % N_BYTES; 140 if (src+2 >= N_BYTES || dst+2 >= N_BYTES) 147 if (src+4 >= N_BYTES || dst+4 >= N_BYTES) [all...] |
/external/chromium_org/third_party/ots/src/ |
ots.h | 70 bool Skip(size_t n_bytes) { 71 return Read(NULL, n_bytes); 74 bool Read(uint8_t *buffer, size_t n_bytes) { 75 if (n_bytes > 1024 * 1024 * 1024) { 78 if ((offset_ + n_bytes > length_) || 79 (offset_ > length_ - n_bytes)) { 83 std::memcpy(buffer, buffer_ + offset_, n_bytes); 85 offset_ += n_bytes;
|
/external/openssh/ |
ttymodes.c | 353 int n_bytes = 0; local 380 n_bytes += 1; 389 n_bytes += 4; 399 n_bytes += 4; 408 n_bytes += arg_size; \ 413 n_bytes += arg_size; \ 437 n_bytes += 1; 441 n_bytes += 4; 465 n_bytes += 4; 478 if (*n_bytes_ptr != n_bytes) { [all...] |
session.c | 2022 int n_bytes; local [all...] |
/external/valgrind/main/coregrind/ |
launcher-linux.c | 117 ssize_t n_bytes; local 133 n_bytes = read(fd, header, sizeof(header)); 135 if (n_bytes < 2) { 140 (long int)n_bytes, clientname); 148 if (i == n_bytes) return NULL; 156 if (i == n_bytes) break; 160 if (i == n_bytes) return NULL; 165 } else if (n_bytes >= SELFMAG && memcmp(header, ELFMAG, SELFMAG) == 0) { 167 if (n_bytes >= sizeof(Elf32_Ehdr) && header[EI_CLASS] == ELFCLASS32) { 203 } else if (n_bytes >= sizeof(Elf64_Ehdr) && header[EI_CLASS] == ELFCLASS64) [all...] |
/external/pixman/test/ |
pixel-test.c | 105 int n_bytes = pixman_image_get_stride (image) * pixman_image_get_height (image); local 111 for (i = 0; i < n_bytes / 4; ++i) 117 for (i = 0; i < n_bytes / 2; ++i) 123 for (i = 0; i < n_bytes; ++i)
|
utils.h | 89 /* Generate n_bytes random bytes in fence_malloced memory */ 91 make_random_bytes (int n_bytes);
|
utils.c | 336 int n_bytes; member in struct:__anon26250 352 uint32_t n_bytes = local 364 addr = mmap (NULL, n_bytes, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 369 printf ("mmap failed on %lld %u\n", (long long int)len, n_bytes); 381 ((info_t *)initial_page)->n_bytes = n_bytes; 388 munmap (addr, n_bytes); 404 munmap (info->addr, info->n_bytes); 424 make_random_bytes (int n_bytes) 426 uint8_t *bytes = fence_malloc (n_bytes); [all...] |
/external/chromium_org/third_party/opus/src/silk/ |
debug.h | 253 #define DEBUG_STORE_DATA( FILE_NAME, DATA_PTR, N_BYTES ) { \ 261 fwrite((DATA_PTR), (N_BYTES), 1, silk_debug_store_fp[ cnt ]); \ 275 #define DEBUG_STORE_DATA(FILE_NAME, DATA_PTR, N_BYTES)
|
/external/pixman/pixman/ |
pixman-mips-dspr2.h | 43 pixman_mips_fast_memcpy (void *dst, void *src, uint32_t n_bytes); 45 pixman_fill_buff16_mips (void *dst, uint32_t n_bytes, uint16_t value); 47 pixman_fill_buff32_mips (void *dst, uint32_t n_bytes, uint32_t value);
|
pixman-fast-path.c | 1165 uint32_t n_bytes = width * bpp; local 1178 memcpy (dst, src, n_bytes); [all...] |
/external/svox/pico/lib/ |
picosig.c | 738 picoos_uint32 n_start, n_fram, n_bytes; local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/ |
xdr.h | 341 char *n_bytes; member in struct:netobj
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
xdr.h | 341 char *n_bytes; member in struct:netobj
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
xdr.h | 341 char *n_bytes; member in struct:netobj
|
/external/valgrind/main/massif/ |
ms_main.c | 596 static void* perm_malloc(SizeT n_bytes) 603 if (hp + n_bytes > hp_lim) { 611 hp += n_bytes; 613 return (void*)(hp - n_bytes); [all...] |
/external/valgrind/main/VEX/priv/ |
host_ppc_defs.c | [all...] |