HomeSort by relevance Sort by last modified time
    Searched refs:nw (Results 26 - 50 of 179) sorted by null

12 3 4 5 6 7 8

  /external/webrtc/webrtc/common_audio/
fft4g.c 291 static void makewt(size_t nw, size_t *ip, float *w);
332 size_t nw, nc; local
335 nw = ip[0];
336 if (n > (nw << 2)) {
337 nw = n >> 2;
338 makewt(nw, ip, w);
343 makect(nc, ip, w + nw);
349 rftfsub(n, a, nc, w + nw);
360 rftbsub(n, a, nc, w + nw);
372 int j, nw, nc
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
smisc.c 152 int nw, nw1; local
162 nw = b->wds;
163 nw1 = nw & 1;
164 for(xe = x + (nw - nw1); x < xe; x += 2)
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
smisc.c 160 int nw, nw1; local
170 nw = b->wds;
171 nw1 = nw & 1;
172 for(xe = x + (nw - nw1); x < xe; x += 2)
  /external/valgrind/none/tests/
coolo_sigaction.cpp 48 __attribute__((unused)) ssize_t nw = write(2, buffer, n); local
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 486 int64_t cnt, n, nw; local
507 for (cnt = n;; cnt -= nw) {
520 nw = 0;
530 nw = bwrite(&out, outp, cnt);
531 if (nw <= 0) {
532 if (nw == 0)
539 nw = 0;
547 outp += nw;
548 st.bytes += nw;
549 if (nw == n)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
thumb2_bcond.d 8 0+002 <[^>]+> [0-9a-f ]+[ ]+bne.[nw] 0+0 <[^>]+>
  /external/python/cpython2/Demo/threads/
sync.py 431 self.nw = 0 # number writers either waiting to write or writing
440 while self.nw:
457 self.nw = self.nw + 1
469 self.nw = self.nw - 1
470 if self.nw:
482 self.nw = self.nw - 1
484 if not self.nw
    [all...]
  /build/blueprint/
ninja_defs.go 112 func (p *poolDef) WriteTo(nw *ninjaWriter, name string) error {
114 err := nw.Comment(p.Comment)
120 err := nw.Pool(name)
125 return nw.ScopedAssign("depth", strconv.Itoa(p.Depth))
220 func (r *ruleDef) WriteTo(nw *ninjaWriter, name string,
224 err := nw.Comment(r.Comment)
230 err := nw.Rule(name)
236 err = nw.ScopedAssign("pool", r.Pool.fullName(pkgNames))
242 err = writeVariables(nw, r.Variables, pkgNames)
367 func (b *buildDef) WriteTo(nw *ninjaWriter, pkgNames map[*packageContext]string) error
    [all...]
context.go     [all...]
  /external/toybox/toys/pending/
dd.c 85 ssize_t nw = writeall(TT.out.fd, TT.out.bp, ((all)? TT.out.count : TT.out.sz)); local
88 if (nw <= 0) perror_exit("%s: write error", TT.out.name);
89 if (nw == TT.out.sz) TT.out_full++;
91 TT.out.count -= nw;
92 TT.out.bp += nw;
93 TT.bytes += nw;
tftpd.c 215 int nw = writeall(fd, &rpkt[4], len-4); local
216 if (nw != len-4) {
222 if (nw != blksize) done = 1;
  /external/tensorflow/tensorflow/compiler/jit/graphcycles/
graphcycles.cc 213 Node* nw = r->nodes_[w]; local
214 if (nw->rank == upper_bound) {
217 if (!nw->visited && nw->rank < upper_bound) {
239 Node* nw = r->nodes_[w]; local
240 if (!nw->visited && lower_bound < nw->rank) {
  /external/curl/docs/examples/
Makefile.netware 56 INSTDIR = ..$(DS)..$(DS)curl-$(LIBCURL_VERSION_STR)-bin-nw
230 LDLIBS += $(LIBSSH2_PATH)/nw/libssh2.$(LIBEXT)
233 IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp
261 LDLIBS += $(ZLIB_PATH)/nw/$(LIBARCH)/libz.$(LIBEXT)
264 IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 137 Node *nv, *nw; local
143 nw = vert[w];
144 assert(nw->tag == w);
145 for (Graph::EdgeIterator ei = nw->incident(); !ei.end(); ei.next()) {
153 bucket[SEMI(w)].insert(nw);
172 nw = &BasicBlock::get(vert[DOM(v)])->dom;
174 if (nw->getGraph() && !nv->getGraph()) {
176 nw->attach(nv, Graph::Edge::TREE);
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_IfaceManager.cpp 491 iface_instances *tmp = head,*nw; local
493 nw = (iface_instances *)malloc(sizeof(iface_instances));
494 if(nw != NULL)
496 nw->ipa_if_index = ipa_if_index;
497 nw->obj = obj;
498 nw->next = NULL;
507 head = nw;
515 tmp->next = nw;
  /external/boringssl/src/ssl/
s3_pkt.cc 141 unsigned tot, n, nw; local
178 nw = max;
180 nw = n;
183 int ret = do_ssl3_write(ssl, SSL3_RT_APPLICATION_DATA, &in[tot], nw);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ImsiEncryptionInfoTest.java 104 ImsiEncryptionInfo nw = new ImsiEncryptionInfo(p); local
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
wrappers.py 278 nw = len(weights)
279 self.forward_layer.initial_weights = weights[:nw // 2]
280 self.backward_layer.initial_weights = weights[nw // 2:]
303 nw = len(weights)
304 self.forward_layer.set_weights(weights[:nw // 2])
305 self.backward_layer.set_weights(weights[nw // 2:])
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 424 ANTLR3_UINT32 nw; local
427 nw = numWordsToHold(bit);
429 if (bl > nw)
435 bitset->grow(bitset, nw);
  /frameworks/rs/driver/
rsdAllocation.cpp 574 ANativeWindow *nw = drv->wndSurface; local
575 if (nw) {
580 ANativeWindow_cancelBuffer(nw, drv->wndBuffer, fenceID);
581 ANativeWindow_release(nw);
706 static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
710 int r = ANativeWindow_dequeueBuffer(nw, &drv->wndBuffer, &fenceID);
733 void rsdAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
758 if (nw) {
759 int32_t r = ANativeWindow_setBuffersGeometry(nw, alloc->mHal.drvState.lod[0].dimX,
768 r = ANativeWindow_setUsage(nw,
787 ANativeWindow *nw = drv->wndSurface; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileChannelImpl.java 606 int nw = target.write(bb); local
607 tw += nw;
608 if (nw != nr)
610 pos += nw;
716 int nw = write(bb, pos); local
717 tw += nw;
718 if (nw != nr)
720 pos += nw;
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64.go 421 var nw int
422 nw, d.err = d.enc.Decode(d.outbuf[:], d.buf[:d.nbuf])
424 d.out = d.outbuf[:nw]
443 nw := d.nbuf / 4 * 3
444 if nw > len(p) {
445 nw, d.err = d.enc.Decode(d.outbuf[:], d.buf[:nr])
446 d.out = d.outbuf[:nw]
  /prebuilts/go/darwin-x86/src/strings/
replace.go 499 nw, err := sw.WriteString(s[last:i])
500 n += nw
506 nw, err := w.Write(r[b])
507 n += nw
513 var nw int
514 nw, err = sw.WriteString(s[last:])
515 n += nw
  /prebuilts/go/linux-x86/src/encoding/base64/
base64.go 421 var nw int
422 nw, d.err = d.enc.Decode(d.outbuf[:], d.buf[:d.nbuf])
424 d.out = d.outbuf[:nw]
443 nw := d.nbuf / 4 * 3
444 if nw > len(p) {
445 nw, d.err = d.enc.Decode(d.outbuf[:], d.buf[:nr])
446 d.out = d.outbuf[:nw]
  /prebuilts/go/linux-x86/src/strings/
replace.go 499 nw, err := sw.WriteString(s[last:i])
500 n += nw
506 nw, err := w.Write(r[b])
507 n += nw
513 var nw int
514 nw, err = sw.WriteString(s[last:])
515 n += nw

Completed in 824 milliseconds

12 3 4 5 6 7 8