HomeSort by relevance Sort by last modified time
    Searched defs:nw (Results 1 - 25 of 34) sorted by null

1 2

  /external/valgrind/main/none/tests/
coolo_sigaction.cpp 49 __attribute__((unused)) ssize_t nw = write(2, buffer, n); local
  /cts/tests/tests/telephony/src/android/telephony/cts/
NeighboringCellInfoTest.java 73 NeighboringCellInfo nw = new NeighboringCellInfo(p); local
74 assertEquals(NETWORK_TYPE_GPRS, nw.getNetworkType());
75 assertEquals(rssi, nw.getRssi());
76 assertEquals(0x1234, nw.getLac());
77 assertEquals(0x5678, nw.getCid());
78 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nw.getPsc());
  /device/moto/wingray/taudio/
tplay.c 21 int nr, nw; local
76 nw = write(ofd, buffer, nr);
77 FAILIF(nw < 0, "Could not copy to output: %s\n", strerror(errno));
78 FAILIF(nw != nr, "Mismatch nw = %d nr = %d\n", nw, nr);
85 printf("out %d (%d late, %d underrun errors)\n", nw,
92 printf("out %d\n", nw);
twav.c 81 int nr, nw = 0, total = 0; local
142 nw = write(ofd, buffer, nr);
143 FAILIF(nw < 0, "Could not copy to output: %s\n", strerror(errno));
144 FAILIF(nw != nr, "Mismatch nw = %d nr = %d\n", nw, nr);
145 total += nw;
trec.c 82 int nr, nw = 0, total = 0; local
180 nw = write(ofd, buffer, nr);
181 FAILIF(nw < 0, "Could not copy to output: %s\n", strerror(errno));
182 FAILIF(nw != nr, "Mismatch nw = %d nr = %d\n", nw, nr);
183 total += nw;
resample.c 122 int nr, nr_out, nw; local
233 nw = write(ofd, buf, nr_out);
234 FAILIF(nw < 0, "could not write to %s: %s\n", output, strerror(errno));
235 FAILIF(nw != nr_out, "mismatch, generated %d, wrote %d bytes\n", nr_out, nw);
236 total += nw;
  /external/openssl/crypto/bn/
bn_shift.c 137 int i,nw,lb,rb; local
145 nw=n/BN_BITS2;
146 if (bn_wexpand(r,a->top+nw+1) == NULL) return(0);
151 t[a->top+nw]=0;
154 t[nw+i]=f[i];
159 t[nw+i+1]|=(l>>rb)&BN_MASK2;
160 t[nw+i]=(l<<lb)&BN_MASK2;
162 memset(t,0,nw*sizeof(t[0]));
163 /* for (i=0; i<nw; i++)
165 r->top=a->top+nw+1
173 int i,j,nw,lb,rb; local
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
NeighboringCellInfoTest.java 72 NeighboringCellInfo nw = new NeighboringCellInfo(p); local
73 assertEquals(NETWORK_TYPE_GPRS, nw.getNetworkType());
74 assertEquals(rssi, nw.getRssi());
75 assertEquals(0x1234, nw.getLac());
76 assertEquals(0x5678, nw.getCid());
77 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nw.getPsc());
  /external/libvpx/vpx_scale/include/generic/
vpxscale_arbitrary.h 27 int nw; member in struct:__anon8531
  /external/bluetooth/bluez/tools/
hciattach_qualcomm.c 143 int nw; local
149 nw = writev(fd, iov_cmd, 2);
150 FAILIF(nw != (int) sizeof(cmdp) + cmd->plen,
153 nw);
hciattach_tialt.c 161 int nw; local
172 nw = writev(fd, iov_cmd, 2);
173 FAILIF(nw != (int) sizeof(cmd) + cmd->plen,
175 nw);
  /system/core/toolbox/
cat.c 158 ssize_t nr, nw, off; local
174 for (off = 0; nr; nr -= nw, off += nw)
175 if ((nw = write(wfd, buf + off, (size_t)nr)) < 0)
dd.c 492 int64_t cnt, n, nw; local
513 for (cnt = n;; cnt -= nw) {
526 nw = 0;
540 nw = bwrite(out.fd, outp, cnt);
541 if (nw <= 0) {
542 if (nw == 0) {
554 nw = 0;
562 outp += nw;
563 st.bytes += nw;
564 if (nw == n)
    [all...]
  /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);
  /external/openssl/ssl/
s3_pkt.c 600 unsigned int tot,n,nw; local
628 nw = max_plain_length;
630 nw=n;
632 i=do_ssl3_write(s, type, &(buf[tot]), nw, 0);
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 687 wordID wdids[32], nw = 0; local
695 for (word = strtok(copy_of, " "); word; nw++, word = strtok(NULL, " "))
697 wdids[nw] = wordmap_find_index(fst->olabels, word);
698 if (wdids[nw] == MAXwordID)
710 for (j = nw; --j >= 0;)
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 289 static void makewt(int nw, int *ip, float *w);
326 int nw, nc; local
329 nw = ip[0];
330 if (n > (nw << 2)) {
331 nw = n >> 2;
332 makewt(nw, ip, w);
337 makect(nc, ip, w + nw);
343 rftfsub(n, a, nc, w + nw);
354 rftbsub(n, a, nc, w + nw);
366 int j, nw, nc
    [all...]