Home
last modified time | relevance | path

Searched refs:nelts (Results 1 - 8 of 8) sorted by relevance

/third_party/libuv/src/
H A Dheap-inl.h43 unsigned int nelts; member
65 heap->nelts = 0; in HEAP_EXPORT()
124 for (k = 0, n = 1 + heap->nelts; n >= 2; k += 1, n /= 2) in HEAP_EXPORT()
142 heap->nelts += 1; in HEAP_EXPORT()
161 if (heap->nelts == 0) in HEAP_EXPORT()
168 for (k = 0, n = heap->nelts; n >= 2; k += 1, n /= 2) in HEAP_EXPORT()
192 heap->nelts -= 1; in HEAP_EXPORT()
/third_party/node/deps/uv/src/
H A 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/
H A 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))
/third_party/libuv/include/uv/
H A Dunix.h244 unsigned int nelts; \
/third_party/node/deps/uv/include/uv/
H A Dunix.h244 unsigned int nelts; \
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/
H A Dcurve448.c225 int nelts, int idx) in constant_time_lookup_niels()
227 constant_time_lookup(ni, table, sizeof(niels_s), nelts, idx); in constant_time_lookup_niels()
223 constant_time_lookup_niels(niels_s * RESTRICT ni, const niels_t * table, int nelts, int idx) constant_time_lookup_niels() argument
/third_party/openssl/crypto/ec/curve448/
H A Dcurve448.c225 int nelts, int idx) in constant_time_lookup_niels()
227 constant_time_lookup(ni, table, sizeof(niels_s), nelts, idx); in constant_time_lookup_niels()
223 constant_time_lookup_niels(niels_s * RESTRICT ni, const niels_t * table, int nelts, int idx) constant_time_lookup_niels() argument
/third_party/python/Python/
H A Dcompile.c5105 Py_ssize_t i, nseen, nelts, nkwelts; in compiler_call_helper() local
5111 nelts = asdl_seq_LEN(args); in compiler_call_helper()
5114 if (nelts + nkwelts*2 > STACK_USE_GUIDELINE) { in compiler_call_helper()
5117 for (i = 0; i < nelts; i++) { in compiler_call_helper()
5131 for (i = 0; i < nelts; i++) { in compiler_call_helper()
5142 ADDOP_I(c, PRECALL, n + nelts + nkwelts); in compiler_call_helper()
5143 ADDOP_I(c, CALL, n + nelts + nkwelts); in compiler_call_helper()
5149 if (n ==0 && nelts == 1 && ((expr_ty)asdl_seq_GET(args, 0))->kind == Starred_kind) { in compiler_call_helper()

Completed in 19 milliseconds