HomeSort by relevance Sort by last modified time
    Searched defs:nw (Results 1 - 25 of 31) 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());
  /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/opt/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/libvpx/vpx_scale/include/generic/
vpxscale_arbitrary.h 26 int nw; member in struct:__anon11017
  /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 454 int64_t cnt, n, nw; local
475 for (cnt = n;; cnt -= nw) {
488 nw = 0;
502 nw = bwrite(out.fd, outp, cnt);
503 if (nw <= 0) {
504 if (nw == 0) {
516 nw = 0;
524 outp += nw;
525 st.bytes += nw;
526 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 583 unsigned int tot,n,nw; local
605 nw=s->max_send_fragment;
607 nw=n;
609 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...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 582 NotificationWrapper nw = new NotificationWrapper(n); local
585 nw.add(new NotificationWrapper(null, 0, info.eventId, info.startMillis,
589 return nw;
    [all...]
  /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 116 buf.get() ? &mHalPreviewWindow.nw : 0);
659 mHalPreviewWindow.nw.cancel_buffer = __cancel_buffer;
660 mHalPreviewWindow.nw.lock_buffer = __lock_buffer;
661 mHalPreviewWindow.nw.dequeue_buffer = __dequeue_buffer;
662 mHalPreviewWindow.nw.enqueue_buffer = __enqueue_buffer;
663 mHalPreviewWindow.nw.set_buffer_count = __set_buffer_count;
664 mHalPreviewWindow.nw.set_buffers_geometry = __set_buffers_geometry;
665 mHalPreviewWindow.nw.set_crop = __set_crop;
666 mHalPreviewWindow.nw.set_timestamp = __set_timestamp;
667 mHalPreviewWindow.nw.set_usage = __set_usage
677 struct preview_stream_ops nw; member in struct:android::CameraHardwareInterface::camera_preview_window
    [all...]
  /external/libppp/src/
ip.c 908 ssize_t nw; local
942 nw = write(bundle->dev.fd, data, nb);
943 if (nw != (ssize_t)nb) {
944 if (nw == -1)
949 nw);
physical.c 414 int nw, result = 0; local
420 nw = physical_Write(p, MBUF_CTOP(p->out), p->out->m_len);
422 p->link.name, nw, (unsigned long)p->out->m_len, p->fd);
423 if (nw > 0) {
424 p->out->m_len -= nw;
425 p->out->m_offset += nw;
429 } else if (nw < 0) {
  /frameworks/rs/driver/
rsdAllocation.cpp 500 ANativeWindow *nw = drv->wndSurface; local
501 if (nw) {
504 int32_t r = nw->queueBuffer(nw, drv->wndBuffer, -1);
648 static bool IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
651 int32_t r = native_window_dequeue_buffer_and_wait(nw, &drv->wndBuffer);
673 void rsdAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) {
678 if (nw) {
679 nw->incStrong(NULL);
684 drv->wnd = nw;
768 ANativeWindow *nw = drv->wndSurface; local
    [all...]
  /frameworks/rs/
rsAllocation.cpp 462 ANativeWindow *nw = (ANativeWindow *)sur; local
463 rsc->mHal.funcs.allocation.setSurface(rsc, this, nw);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserHistoryDictionary.java 373 final NextWord nw = mUserHistoryDictionary.getBigramWord(word1, word2); local
374 if (nw != null) {
375 final ForgettingCurveParams fcp = nw.getFcParams();
  /system/core/init/
devices.c 678 ssize_t nw = 0; local
680 nw = write(data_fd, buf + nw, nr);
681 if(nw <= 0) {
685 nr -= nw;
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp 46 int nw; local
59 nw = ::write(fd, buf + written, size - written);
60 if (nw < 0) {
64 written += nw;
    [all...]
  /external/libxml2/
parser.c 7123 xmlNodePtr nw = NULL, cur, firstChild = NULL; local
7163 xmlNodePtr nw = NULL, cur, next, last, local
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCameraHWInterface.cpp 3484 int nw; local
    [all...]
  /external/mksh/src/
edit.c 1420 size_t i, nb, nw; local
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 

Completed in 472 milliseconds

1 2