Searched refs:nelts (Results 1 – 7 of 7) sorted by relevance
/third_party/libuv/src/ |
D | heap-inl.h | 42 unsigned int nelts; member 64 heap->nelts = 0; in HEAP_EXPORT() 123 for (k = 0, n = 1 + heap->nelts; n >= 2; k += 1, n /= 2) in HEAP_EXPORT() 141 heap->nelts += 1; in HEAP_EXPORT() 160 if (heap->nelts == 0) in HEAP_EXPORT() 167 for (k = 0, n = heap->nelts; n >= 2; k += 1, n /= 2) in HEAP_EXPORT() 181 heap->nelts -= 1; in HEAP_EXPORT()
|
/third_party/mesa3d/src/util/ |
D | u_dynarray.h | 105 util_dynarray_resize_bytes(struct util_dynarray *buf, unsigned nelts, size_t eltsize) in util_dynarray_resize_bytes() argument 107 if (unlikely(nelts > UINT_MAX / eltsize)) in util_dynarray_resize_bytes() 110 unsigned newsize = nelts * eltsize; in util_dynarray_resize_bytes() 173 #define util_dynarray_resize(buf, type, nelts) util_dynarray_resize_bytes(buf, (nelts), sizeof(type… argument
|
/third_party/libffi/src/ia64/ |
D | ffi.c | 254 size_t nelts = size / hfa_type_size (hfa_type); in ffi_prep_cif_machdep_core() local 255 if (nelts <= 8) in ffi_prep_cif_machdep_core()
|
/third_party/libuv/include/uv/ |
D | unix.h | 244 unsigned int nelts; \
|
/third_party/openssl/crypto/ec/curve448/ |
D | curve448.c | 222 int nelts, int idx) in constant_time_lookup_niels() argument 224 constant_time_lookup(ni, table, sizeof(niels_s), nelts, idx); in constant_time_lookup_niels()
|
/third_party/python/Objects/ |
D | listsort.txt | 633 count = sst = sscmp = mst = mscmp = nelts = 0 636 nelts += n 651 print "count", count, "nelts", nelts 665 count 2630 nelts 130906543
|
/third_party/python/Python/ |
D | compile.c | 4433 Py_ssize_t i, nseen, nelts, nkwelts; in compiler_call_helper() local 4439 nelts = asdl_seq_LEN(args); in compiler_call_helper() 4442 if (nelts + nkwelts*2 > STACK_USE_GUIDELINE) { in compiler_call_helper() 4445 for (i = 0; i < nelts; i++) { in compiler_call_helper() 4459 for (i = 0; i < nelts; i++) { in compiler_call_helper() 4477 ADDOP_I(c, CALL_FUNCTION_KW, n + nelts + nkwelts); in compiler_call_helper() 4481 ADDOP_I(c, CALL_FUNCTION, n + nelts); in compiler_call_helper() 4488 if (n ==0 && nelts == 1 && ((expr_ty)asdl_seq_GET(args, 0))->kind == Starred_kind) { in compiler_call_helper()
|