/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_resource.h | 46 uint32_t size; member 94 uint32_t size; member
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | vk_format.h | 62 return desc->channel[channel].size; in vk_format_get_channel_width() 71 if (desc->channel[i].size == 32U) in vk_format_has_32bit_component()
|
/third_party/node/test/parallel/ |
H A D | test-crypto-dh-generate-keys.js | 11 const size = common.hasFipsCrypto || common.hasOpenSSL3 ? 1024 : 256; 24 const dh = crypto.createDiffieHellman(size);
|
H A D | test-fs-watch-encoding.js | 40 if (watchers.size === 0) { 85 const done = common.mustCall(unregisterWatcher, watchers.size);
|
/third_party/node/test/addons/make-callback/ |
H A D | binding.cc | 22 node::MakeCallback(isolate, recv, method, argv.size(), argv.data(), in MakeCallback() 27 node::MakeCallback(isolate, recv, method, argv.size(), argv.data(), in MakeCallback()
|
/third_party/musl/porting/linux/user/src/hook/ |
H A D | musl_preinit_common.c | 12 extern void* libc_gwp_asan_realloc(void *ptr, size_t size); 13 extern void* libc_gwp_asan_calloc(size_t nmemb, size_t size);
|
/third_party/musl/src/hook/linux/ |
H A D | musl_preinit_common.c | 27 extern void* libc_gwp_asan_realloc(void *ptr, size_t size); 28 extern void* libc_gwp_asan_calloc(size_t nmemb, size_t size);
|
/third_party/musl/src/passwd/ |
H A D | getpwent_a.c | 11 int __getpwent_a(FILE *f, struct passwd *pw, char **line, size_t *size, struct passwd **res) in __getpwent_a() argument 19 if ((l=getline(line, size, f)) < 0) { in __getpwent_a()
|
/third_party/nghttp2/fuzz/ |
H A D | fuzz_target.cc | 51 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { in LLVMFuzzerTestOneInput() argument 73 nghttp2_session_mem_recv(session, data, size); in LLVMFuzzerTestOneInput()
|
/third_party/ninja/src/ |
H A D | depfile_parser_perftest.cc | 66 for (size_t i = 0; i < times.size(); ++i) { in main() 75 min, max, total / times.size()); in main()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | uclean.h | 10 * tab size: 8 (not used) 108 * @param size The number of bytes to be allocated 113 typedef void *U_CALLCONV UMemAllocFn(const void *context, size_t size); 118 * @param size The new size for the block. 123 typedef void *U_CALLCONV UMemReallocFn(const void *context, void *mem, size_t size);
|
/third_party/icu/icu4c/source/test/perf/localecanperf/ |
H A D | localecanperf.cpp | 36 virtual long getOperationsPerIteration() { return testCases.size(); } in getOperationsPerIteration() 37 virtual long getEventsPerIteration() { return testCases.size(); } in getEventsPerIteration()
|
/third_party/libdrm/radeon/ |
H A D | radeon_bo.h | 48 uint32_t size; member 56 uint32_t size,
|
H A D | radeon_bo_int.h | 13 uint32_t size; member 27 uint32_t size,
|
/third_party/ltp/testcases/kernel/syscalls/lgetxattr/ |
H A D | lgetxattr02.c | 12 * 2) lgetxattr(2) fails if the size of the value buffer is too small 40 size_t size; member 51 char buf[tc->size]; in verify_lgetxattr()
|
/third_party/ltp/testcases/kernel/syscalls/llistxattr/ |
H A D | llistxattr02.c | 11 * 1) llistxattr(2) fails if the size of the list buffer is too small 46 size_t size; member 58 char buf[t->size]; in verify_llistxattr()
|
/third_party/ltp/testcases/kernel/syscalls/getcwd/ |
H A D | getcwd02.c | 9 * 1) getcwd(2) works fine if buf and size are valid. 10 * 2) getcwd(2) works fine if buf points to NULL and size is set to 0. 11 * 3) getcwd(2) works fine if buf points to NULL and size is greater than strlen(path). 28 size_t size; member 51 res = getcwd(tc->buf, tc->size); in verify_getcwd()
|
/third_party/ltp/testcases/kernel/syscalls/write/ |
H A D | write05.c | 40 size_t size; member 62 TST_EXP_FAIL2(write(*tc->fd, *tc->buf, tc->size), tc->exp_errno); in verify_write()
|
/third_party/ltp/testcases/kernel/syscalls/listxattr/ |
H A D | listxattr02.c | 11 * 1) listxattr(2) fails if the size of the list buffer is too small 45 size_t size; member 57 char buf[t->size]; in verify_listxattr()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
H A D | 6-3.c | 49 size_t size = 1024; in main() local 68 pa = mmap(NULL, size, PROT_NONE, MAP_SHARED, fd, 0); in main()
|
/third_party/lzma/C/ |
H A D | 7zFile.h | 16 // note: USE_FOPEN mode is limited to 32-bit file size
49 /* reads max(*size, remain file's size) bytes */
50 WRes File_Read(CSzFile *p, void *data, size_t *size);
52 /* writes *size bytes */
53 WRes File_Write(CSzFile *p, const void *data, size_t *size);
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | deoptimized-frame-info.h | 43 int parameters_count() { return static_cast<int>(parameters_.size()); } in parameters_count() 46 int expression_count() { return static_cast<int>(expression_stack_.size()); } in expression_count()
|
/third_party/node/deps/v8/src/heap/ |
H A D | memory-measurement-inl.h | 52 size_t size) { in IncrementSize() 53 size_by_context_[context] += size; in IncrementSize() 50 IncrementSize(Address context, Map map, HeapObject object, size_t size) IncrementSize() argument
|
/third_party/node/deps/v8/src/torque/ls/ |
H A D | json.cc | 38 if (++i < value.ToObject().size()) str << ","; in SerializeToString() 48 if (++i < value.ToArray().size()) str << ","; in SerializeToString()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_job.h | 94 return !!job->plbu_cmd_array.size; in lima_job_has_draw_pending() 105 unsigned size, uint32_t *va);
|