/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_shift.c | 106 int i, nw; in bn_lshift_fixed_top() local 116 nw = n / BN_BITS2; in bn_lshift_fixed_top() 117 if (bn_wexpand(r, a->top + nw + 1) == NULL) in bn_lshift_fixed_top() 127 t = &(r->d[nw]); in bn_lshift_fixed_top() 138 r->d[nw] = 0; in bn_lshift_fixed_top() 140 if (nw != 0) in bn_lshift_fixed_top() 141 memset(r->d, 0, sizeof(*t) * nw); in bn_lshift_fixed_top() 144 r->top = a->top + nw + 1; in bn_lshift_fixed_top() 175 int i, top, nw; in bn_rshift_fixed_top() local 185 nw in bn_rshift_fixed_top() [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_shift.c | 106 int i, nw; in bn_lshift_fixed_top() local 116 nw = n / BN_BITS2; in bn_lshift_fixed_top() 117 if (bn_wexpand(r, a->top + nw + 1) == NULL) in bn_lshift_fixed_top() 127 t = &(r->d[nw]); in bn_lshift_fixed_top() 138 r->d[nw] = 0; in bn_lshift_fixed_top() 140 if (nw != 0) in bn_lshift_fixed_top() 141 memset(r->d, 0, sizeof(*t) * nw); in bn_lshift_fixed_top() 144 r->top = a->top + nw + 1; in bn_lshift_fixed_top() 175 int i, top, nw; in bn_rshift_fixed_top() local 185 nw in bn_rshift_fixed_top() [all...] |
/third_party/musl/src/string/ |
H A D | memmem.c | 7 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; in twobyte_memmem() local 9 if (hw == nw) return (char *)h-2; in twobyte_memmem() 10 return hw == nw ? (char *)h-2 : 0; in twobyte_memmem() 15 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8; in threebyte_memmem() local 18 if (hw == nw) return (char *)h-3; in threebyte_memmem() 19 return hw == nw ? (char *)h-3 : 0; in threebyte_memmem() 24 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8 | n[3]; in fourbyte_memmem() local 27 if (hw == nw) return (char *)h-4; in fourbyte_memmem() 28 return hw == nw ? (char *)h-4 : 0; in fourbyte_memmem()
|
H A D | strstr.c | 6 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; in twobyte_strstr() local 7 for (h++; *h && hw != nw; hw = hw<<8 | *++h); in twobyte_strstr() 13 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8; in threebyte_strstr() local 15 for (h+=2; *h && hw != nw; hw = (hw|*++h)<<8); in threebyte_strstr() 21 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8 | n[3]; in fourbyte_strstr() local 23 for (h+=3; *h && hw != nw; hw = hw<<8 | *++h); in fourbyte_strstr()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | strstr.c | 6 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; in twobyte_strstr() local 7 for (h++; *h && hw != nw; hw = hw<<8 | *++h); in twobyte_strstr() 13 uint32_t nw = n[0]<<24 | n[1]<<16 | n[2]<<8; in threebyte_strstr() local 15 for (h+=2; *h && hw != nw; hw = (hw|*++h)<<8); in threebyte_strstr() 21 uint32_t nw = n[0]<<24 | n[1]<<16 | n[2]<<8 | n[3]; in fourbyte_strstr() local 23 for (h+=3; *h && hw != nw; hw = hw<<8 | *++h); in fourbyte_strstr()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | strstr.c | 6 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; in twobyte_strstr() local 7 for (h++; *h && hw != nw; hw = hw<<8 | *++h); in twobyte_strstr() 13 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8; in threebyte_strstr() local 15 for (h+=2; *h && hw != nw; hw = (hw|*++h)<<8); in threebyte_strstr() 21 uint32_t nw = (uint32_t)n[0]<<24 | n[1]<<16 | n[2]<<8 | n[3]; in fourbyte_strstr() local 23 for (h+=3; *h && hw != nw; hw = hw<<8 | *++h); in fourbyte_strstr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
H A D | strstr.c | 6 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; in twobyte_strstr() local 7 for (h++; *h && hw != nw; hw = hw<<8 | *++h); in twobyte_strstr() 13 uint32_t nw = n[0]<<24 | n[1]<<16 | n[2]<<8; in threebyte_strstr() local 15 for (h+=2; *h && hw != nw; hw = (hw|*++h)<<8); in threebyte_strstr() 21 uint32_t nw = n[0]<<24 | n[1]<<16 | n[2]<<8 | n[3]; in fourbyte_strstr() local 23 for (h+=3; *h && hw != nw; hw = hw<<8 | *++h); in fourbyte_strstr()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | discrete_distribution.h | 73 explicit param_type(size_t nw, double xmin, double xmax, in param_type() argument 75 if (nw > 0) { in param_type() 76 p_.reserve(nw); in param_type() 77 double delta = (xmax - xmin) / static_cast<double>(nw); in param_type() 80 for (size_t i = 0; i < nw; ++i) { in param_type() 123 explicit discrete_distribution(size_t nw, double xmin, double xmax, in discrete_distribution() argument 125 : param_(nw, xmin, xmax, std::move(fw)) {} in discrete_distribution()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/ |
H A D | testfrmw.c | 46 time_t nw; in output() local 51 nw = time(NULL); in output() 52 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
H A D | testfrmw.c | 51 time_t nw; in output() local 54 nw = time(NULL); in output() 55 now = localtime(&nw); in output()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/ |
H A D | helper.c | 92 time_t nw; in main() local 163 nw = time(NULL); in main() 164 now = localtime(&nw); in main()
|
/third_party/FreeBSD/contrib/gdtoa/ |
H A D | smisc.c | 142 int nw, nw1; local 152 nw = b->wds; 153 nw1 = nw & 1; 154 for(xe = x + (nw - nw1); x < xe; x += 2)
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_ssa.cpp | 137 Node *nv, *nw; in build() local 143 nw = vert[w]; in build() 144 assert(nw->tag == w); in build() 145 for (Graph::EdgeIterator ei = nw->incident(); !ei.end(); ei.next()) { in build() 153 bucket[SEMI(w)].insert(nw); in build() 172 nw = &BasicBlock::get(vert[DOM(v)])->dom; in build() 174 if (nw->getGraph() && !nv->getGraph()) { in build() 176 nw->attach(nv, Graph::Edge::TREE); in build()
|