Home
last modified time | relevance | path

Searched refs:nelts (Results 1 – 7 of 7) sorted by relevance

/third_party/libuv/src/
Dheap-inl.h42 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/
Du_dynarray.h105 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/
Dffi.c254 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/
Dunix.h244 unsigned int nelts; \
/third_party/openssl/crypto/ec/curve448/
Dcurve448.c222 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/
Dlistsort.txt633 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/
Dcompile.c4433 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()