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

1 2 3 4 5

  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 91 * pre 0 < nBytes <=4
93 public int readInt(int nBytes) {
96 for (int i = 0; i < nBytes; i++) {
104 * pre 0 < nBytes <=1 FIXME: Sign extension
106 public short readShort(int nBytes) {
109 for (int i = 0; i < nBytes; i++) {
117 * pre 0 < nBytes <=1
119 public char readChar(int nBytes) {
122 for (int i = 0; i < nBytes; i++) {
130 * pre 0 < nBytes <=7 FIXME: Sign extensio
    [all...]
  /external/yaffs2/yaffs2/
yaffs_checkptrw.h 8 int yaffs_CheckpointWrite(yaffs_Device *dev,const void *data, int nBytes);
10 int yaffs_CheckpointRead(yaffs_Device *dev,void *data, int nBytes);
yaffs_ecc.h 39 void yaffs_ECCCalculateOther(const unsigned char *data, unsigned nBytes,
41 int yaffs_ECCCorrectOther(unsigned char *data, unsigned 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 ){
fts1_tokenizer.h 56 ** nul-terminated. This should either be fixed, or pInput/nBytes
60 const char *pInput, int nBytes,
tokenizer.h 56 ** nul-terminated. This should either be fixed, or pInput/nBytes
60 const char *pInput, int 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...]
fts2_tokenizer.h 95 const char *pInput, int nBytes, /* Input buffer */
123 ** nul-terminated. This should either be fixed, or pInput/nBytes
  /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...]
fts3_tokenizer.h 95 const char *pInput, int nBytes, /* Input buffer */
126 ** nul-terminated. This should either be fixed, or pInput/nBytes
  /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);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 502 int nBytes = in.readInt();
503 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings data");
504 byte[] buffer = new byte[nBytes];
505 in.readFully(buffer, 0, nBytes);
506 restoreSettings(buffer, nBytes, Settings.System.CONTENT_URI, movedToGlobal);
509 nBytes = in.readInt();
510 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of secure settings data");
511 if (nBytes > buffer.length) buffer = new byte[nBytes];
512 in.readFully(buffer, 0, nBytes);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
prepare.c 524 int nBytes, /* Length of zSql in bytes. */
587 if( nBytes>=0 && (nBytes==0 || zSql[nBytes-1]!=0) ){
590 testcase( nBytes==mxLen );
591 testcase( nBytes==mxLen+1 );
592 if( nBytes>mxLen ){
597 zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes);
603 pParse->zTail = &zSql[nBytes];
684 int nBytes, /* Length of zSql in bytes. *
    [all...]
mem5.c 232 ** Return a block of memory of at least nBytes in size.
233 ** Return NULL if unable. Return NULL if nBytes==0.
357 ** Allocate nBytes of memory
359 static void *memsys5Malloc(int nBytes){
361 if( nBytes>0 ){
363 p = memsys5MallocUnsafe(nBytes);
388 ** nBytes is always a value obtained from a prior call to
389 ** memsys5Round(). Hence nBytes is always a non-negative power
390 ** of two. If nBytes==0 that means that an oversize allocation
394 static void *memsys5Realloc(void *pPrior, int nBytes){
    [all...]
mem3.c 233 ** Called when we are unable to satisfy an allocation of nBytes.
348 ** Return a block of memory of at least nBytes in size.
497 ** Allocate nBytes of memory.
499 static void *memsys3Malloc(int nBytes){
501 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */
503 p = memsys3MallocUnsafe(nBytes);
521 void *memsys3Realloc(void *pPrior, int nBytes){
525 return sqlite3_malloc(nBytes);
527 if( nBytes<=0 ){
532 if( nBytes<=nOld && nBytes>=nOld-128 )
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
ttProgram.py 323 nBytes = 0
324 while nWords+nBytes < nArgs and nBytes < 255 and 0 <= args[nWords+nBytes] <= 255:
325 nBytes += 1
326 if nBytes < 2 and nWords + nBytes < 255 and nWords + nBytes != nArgs:
328 nWords += nBytes
347 if nBytes
    [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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_wgl.h 51 UINT nBytes,
stw_wgl.c 169 UINT nBytes,
172 return DrvDescribePixelFormat( hdc, iPixelFormat, nBytes, ppfd );
295 UINT nBytes,
298 return DrvDescribeLayerPlane(hdc, iPixelFormat, iLayerPlane, nBytes, plpd);
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
readYUV420file.m 27 [X,nBytes]=fread(fid, frameSizeBytes, 'uchar');
41 [X,nBytes]=fread(fid, frameSizeBytes, 'uchar');
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_wgl.h 51 UINT nBytes,
stw_wgl.c 169 UINT nBytes,
172 return DrvDescribePixelFormat( hdc, iPixelFormat, nBytes, ppfd );
295 UINT nBytes,
298 return DrvDescribeLayerPlane(hdc, iPixelFormat, iLayerPlane, nBytes, plpd);
  /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/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 );

Completed in 734 milliseconds

1 2 3 4 5