Home
last modified time | relevance | path

Searched refs:ntz (Results 1 - 4 of 4) sorted by relevance

/third_party/musl/src/stdlib/
H A Dqsort.c33 #define ntz(x) a_ctz_l((x)) macro
38 int r = ntz(p[0] - 1); in pntz()
39 if(r != 0 || (r = 8*sizeof(size_t) + ntz(p[1])) != 8*sizeof(size_t)) { in pntz()
/third_party/node/deps/v8/src/codegen/ia32/
H A Dmacro-assembler-ia32.cc1543 unsigned ntz = base::bits::CountTrailingZeros32(src); in CallRecordWriteStub() local
1544 if (nlz + cnt + ntz == 32) { in CallRecordWriteStub()
1546 if (ntz == 0) { in CallRecordWriteStub()
1569 unsigned ntz = base::bits::CountTrailingZeros64(src); in CallRecordWriteStub() local
1570 if (nlz + cnt + ntz == 64) { in CallRecordWriteStub()
1572 if (ntz == 0) { in CallRecordWriteStub()
/third_party/node/deps/v8/src/codegen/x64/
H A Dmacro-assembler-x64.cc1562 unsigned ntz = base::bits::CountTrailingZeros(src); in CallRecordWriteStub() local
1565 if (pop + ntz + nlz == 32) { in CallRecordWriteStub()
1567 if (ntz) Pslld(dst, static_cast<byte>(ntz + nlz)); in CallRecordWriteStub()
1581 unsigned ntz = base::bits::CountTrailingZeros(src); in CallRecordWriteStub() local
1584 if (pop + ntz + nlz == 64) { in CallRecordWriteStub()
1586 if (ntz) Psllq(dst, static_cast<byte>(ntz + nlz)); in CallRecordWriteStub()
/third_party/python/Objects/
H A Dlongobject.c4596 int ntz = 0; /* number of trailing zeroes in `pending` */ \ in long_pow()
4601 ++ntz; \ in long_pow()
4604 assert(ntz < blen); \ in long_pow()
4605 blen -= ntz; \ in long_pow()
4610 while (ntz-- > 0) \ in long_pow()

Completed in 17 milliseconds