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...]
  /frameworks/base/core/jni/
android_bluetooth_HeadsetBase.cpp 84 int nw; local
  /frameworks/rs/driver/
rsdAllocation.cpp 399 static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
402 int32_t r = nw->dequeueBuffer(nw, &drv->wndBuffer);
409 r = nw->lockBuffer(nw, drv->wndBuffer);
429 void rsdAllocationSetSurfaceTexture(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
432 //ALOGE("rsdAllocationSetSurfaceTexture %p %p", alloc, nw);
436 drv->wnd = nw;
449 if (nw != NULL) {
459 r = native_window_set_usage(nw, flags)
484 ANativeWindow *nw = alloc->mHal.state.wndSurface; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 419 NotificationWrapper nw = new NotificationWrapper(n); local
422 nw.add(new NotificationWrapper(null, 0, info.eventId, info.startMillis,
426 return nw;
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft.c 120 const int nw = 32; local
124 ip[0] = nw;
126 nwh = nw >> 1;
137 rdft_w[nw - j] = y;
138 rdft_w[nw - j + 1] = x;
140 bitrv2_32or128(nw, ip + 2, rdft_w);
  /frameworks/av/services/camera/libcameraservice/
CameraHardwareInterface.h 121 buf.get() ? &mHalPreviewWindow.nw : 0);
664 mHalPreviewWindow.nw.cancel_buffer = __cancel_buffer;
665 mHalPreviewWindow.nw.lock_buffer = __lock_buffer;
666 mHalPreviewWindow.nw.dequeue_buffer = __dequeue_buffer;
667 mHalPreviewWindow.nw.enqueue_buffer = __enqueue_buffer;
668 mHalPreviewWindow.nw.set_buffer_count = __set_buffer_count;
669 mHalPreviewWindow.nw.set_buffers_geometry = __set_buffers_geometry;
670 mHalPreviewWindow.nw.set_crop = __set_crop;
671 mHalPreviewWindow.nw.set_timestamp = __set_timestamp;
672 mHalPreviewWindow.nw.set_usage = __set_usage
682 struct preview_stream_ops nw; member in struct:android::CameraHardwareInterface::camera_preview_window
    [all...]
  /frameworks/rs/
rsAllocation.cpp 423 ANativeWindow *nw = (ANativeWindow *)sur; local
425 if (nw) {
426 nw->incStrong(NULL);
428 rsc->mHal.funcs.allocation.setSurfaceTexture(rsc, this, nw);
429 mHal.state.wndSurface = nw;
  /system/core/init/
devices.c 701 ssize_t nw = 0; local
703 nw = write(data_fd, buf + nw, nr);
704 if(nw <= 0) {
708 nr -= nw;
  /frameworks/base/icu4j/java/android/icu/text/
ArabicShaping.java 1671 int nw = 0; local
    [all...]

Completed in 902 milliseconds

1 2