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

1 2 3

  /frameworks/base/core/jni/
android_server_Watchdog.cpp 42 int nBytes;
43 while ((nBytes = read(stackFd, buf, sizeof(buf))) > 0) {
44 write(outFd, buf, nBytes);
  /hardware/ti/omap3/dspbridge/inc/
mem.h 320 DWORD nBytes;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
mem.h 320 DWORD nBytes;
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer1.c 36 int nBytes; /* size of the input */
101 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
107 const char *pInput, int nBytes, /* String to be tokenized */
117 c->nBytes = 0;
118 }else if( nBytes<0 ){
119 c->nBytes = (int)strlen(pInput);
121 c->nBytes = nBytes;
159 while( c->iOffset<c->nBytes ){
163 while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) )
    [all...]
simple_tokenizer.c 39 int nBytes; /* size of the input */
92 const char *pInput, int nBytes,
99 c->nBytes = nBytes<0 ? (int) strlen(pInput) : nBytes;
130 while( c->pCurrent-c->pInput<c->nBytes ){
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer1.c 43 int nBytes; /* size of the input */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
126 c->nBytes = 0;
127 }else if( nBytes<0 ){
128 c->nBytes = (int)strlen(pInput);
130 c->nBytes = nBytes;
168 while( c->iOffset<c->nBytes ){
172 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) )
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer1.c 44 int nBytes; /* size of the input */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
128 c->nBytes = 0;
129 }else if( nBytes<0 ){
130 c->nBytes = (int)strlen(pInput);
132 c->nBytes = nBytes;
170 while( c->iOffset<c->nBytes ){
174 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) )
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 176 int nBytes;
229 nBytes = toByte - i +1;
230 if ( nBytes != 0 ) {
234 if ( nBytes != 1 ) {
236 if ( nBytes != 2) {
  /external/aac/libAACdec/src/
aacdecoder_lib.cpp 758 int nBytes;
760 nBytes = nBits>>3;
761 pSi->numTotalBytes += nBytes;
766 pSi->numBadBytes += nBytes;
    [all...]
  /external/bzip2/
compress.c 243 Int32 nGroups, nBytes;
503 nBytes = s->numZ;
514 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes );
518 nBytes = s->numZ;
526 VPrintf1( "selectors %d, ", s->numZ-nBytes );
529 nBytes = s->numZ;
542 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
545 nBytes = s->numZ;
597 VPrintf1( "codes %d\n", s->numZ-nBytes );
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
android_logmsg.cpp 201 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1;
208 if (nBytes > sizeof(log_line))
219 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1;
226 if (nBytes > sizeof(log_line))
245 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1;
252 if (nBytes > sizeof(log_line))
271 UINT32 nBytes = (len*2)+1;
280 if (nBytes > sizeof(log_line))
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 150 unsigned int nBytes = 4;
152 nBytes = 8;
153 for (pos = 0; pos < size; pos += nBytes) {
181 } else if (nBytes == 4)
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusMetaHeader.h 27 DWORD nBytes; // Size of the metafile in bytes
  /external/srec/srec/include/
utteranc.h 193 unsigned long nBytes;
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 234 static int write_chunk(__u8 *data, __u32 objId, __u32 chunkId, __u32 nBytes)
247 t.byteCount = nBytes;
460 int nBytes;
467 while((nBytes = read(h,bytes,512)) > 0)
470 write_chunk(bytes,newObj,chunk,nBytes);
473 if(nBytes < 0)
474 error = nBytes;
mkyaffs2image.c 220 static int write_chunk(__u8 *data, __u32 objId, __u32 chunkId, __u32 nBytes)
236 t.byteCount = nBytes;
451 int nBytes;
458 while((nBytes = read(h,bytes,sizeof(bytes))) > 0)
461 write_chunk(bytes,newObj,chunk,nBytes);
464 if(nBytes < 0)
465 error = nBytes;
  /external/chromium_org/third_party/sqlite/src/src/
vtab.c 242 int nBytes = sizeof(char *)*(1+pTable->nModuleArg);
244 azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes);
576 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR);
577 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
test8.c 181 int nBytes;
188 nBytes = sizeof(char *) * nCol;
195 nBytes += strlen(zName)+1;
197 aCol = (char **)sqlite3MallocZero(nBytes);
212 assert( (zSpace-nBytes)==(char *)aCol );
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 48 DWORD nBytes;
  /external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
ubrkperfold.cpp 589 int nBytes;
590 if (ch >= 0xF0) {nBytes=4;}
591 else if (ch >= 0xE0) {nBytes=3;}
592 else if (ch >= 0xC0) {nBytes=2;}
602 for (i=1; i<nBytes; i++) {
605 fprintf(stderr, "utf-8 encoded file %s contains corrupt data at offset %d. Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch);
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 589 int nBytes;
590 if (ch >= 0xF0) {nBytes=4;}
591 else if (ch >= 0xE0) {nBytes=3;}
592 else if (ch >= 0xC0) {nBytes=2;}
602 for (i=1; i<nBytes; i++) {
605 fprintf(stderr, "utf-8 encoded file %s contains corrupt data at offset %d. Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch);
  /external/pdfium/core/src/fxge/dib/
fx_dib_transform.cpp 101 int nBytes = GetBPP() / 8;
103 if (nBytes == 3) {
108 FX_LPBYTE dest_scan = dest_buf + dest_col * nBytes;
112 if (nBytes == 4) {
119 FX_LPCBYTE src_scan = GetScanline(row) + col_start * nBytes;
120 if (nBytes == 1)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_fs.c 556 unsigned nBytes;
580 nBytes = PAGE_CACHE_SIZE;
582 nBytes = inode->i_size & (PAGE_CACHE_SIZE - 1);
594 (unsigned)(page->index << PAGE_CACHE_SHIFT), nBytes));
601 nBytes, 0);
614 return (nWritten == nBytes) ? 0 : -ENOSPC;
635 int nBytes = to - offset;
642 (KERN_DEBUG "yaffs_commit_write addr %x pos %x nBytes %d\n", saddr,
643 spos, nBytes));
645 nWritten = yaffs_file_write(f, addr, nBytes, &pos)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
G729DecTest.c     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 280 final int nBytes = (int) mDownloadFile.length();
282 final byte[] response = new byte[nBytes];
283 final int read = reader.read(response, 0, nBytes);
284 if (read == nBytes) {

Completed in 1012 milliseconds

1 2 3