HomeSort by relevance Sort by last modified time
    Searched full:nbytes (Results 126 - 150 of 460) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/yaffs2/yaffs2/utils/
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;
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;
  /external/yaffs2/yaffs2/mtdemul/
nandemul2k.c 101 static void nandemul2k_Read(void *buffer, int page, int start, int nBytes)
105 if(buffer && nBytes > 0)
107 memcpy(buffer,&ned.block[blk]->page[pg]->data[start],nBytes);
112 static void nandemul2k_Program(const void *buffer, int page, int start, int nBytes)
121 while(buffer && nBytes>0)
126 nBytes--;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
objimpl.h 105 PyAPI_FUNC(void *) _PyObject_DebugMalloc(size_t nbytes); variable
106 PyAPI_FUNC(void *) _PyObject_DebugRealloc(void *p, size_t nbytes);
111 PyAPI_FUNC(void *) _PyObject_DebugMallocApi(char api, size_t nbytes);
112 PyAPI_FUNC(void *) _PyObject_DebugReallocApi(char api, void *p, size_t nbytes);
115 PyAPI_FUNC(void *) _PyMem_DebugMalloc(size_t nbytes); variable
116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
objimpl.h 105 PyAPI_FUNC(void *) _PyObject_DebugMalloc(size_t nbytes); variable
106 PyAPI_FUNC(void *) _PyObject_DebugRealloc(void *p, size_t nbytes);
111 PyAPI_FUNC(void *) _PyObject_DebugMallocApi(char api, size_t nbytes);
112 PyAPI_FUNC(void *) _PyObject_DebugReallocApi(char api, void *p, size_t nbytes);
115 PyAPI_FUNC(void *) _PyMem_DebugMalloc(size_t nbytes); variable
116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes);
  /external/e2fsprogs/debugfs/
dump.c 107 int nbytes; local
124 nbytes = write(fd, buf, got);
125 if ((unsigned) nbytes != got)
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 147 int nbytes = 0; local
148 while ((nbytes = is.read(buf)) > -1) {
149 fos.write(buf, 0, nbytes);
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
no_fault_pm_nameservice_test.html 45 'nbytes = 47\n'
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
pm_nameservice_test.html 45 'nbytes = 47\n'
  /external/libvpx/libvpx/
vp9_spatial_scalable_encoder.c 124 size_t nbytes; local
147 nbytes = fread(ptr, 1, to_read, f);
148 if (nbytes != to_read) {
150 if (nbytes > 0)
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 149 unsigned int nBytes = 4;
151 nBytes = 8;
152 for (pos = 0; pos < size; pos += nBytes) {
169 } else if (nBytes == 4)
  /external/valgrind/main/none/tests/x86/
x86locked.c 98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn )
101 while (nBytes >= 4) {
107 nBytes -= 4;
109 while (nBytes >= 1) {
112 nBytes -= 1;
128 static void send ( int nbytes )
130 assert( ((unsigned int)nbytes) < sizeof(outBuf)-1);
131 assert(outBuf[nbytes] == 0);
132 theCRC = crcBytes( (UChar*)&outBuf[0], nbytes, theCRC );
  /external/yaffs2/yaffs2/
yaffs_ecc.c 255 void yaffs_ECCCalculateOther(const unsigned char *data, unsigned nBytes,
265 for (i = 0; i < nBytes; i++) {
282 int yaffs_ECCCorrectOther(unsigned char *data, unsigned nBytes,
312 if(lDelta >= nBytes)
  /external/chromium_org/third_party/re2/re2/testing/
regexp_benchmark.cc 137 void MakeText(string* text, int nbytes) {
138 text->resize(nbytes);
140 for (int i = 0; i < nbytes; i++) {
148 // Makes text of size nbytes, then calls run to search
150 void Search(int iters, int nbytes, const char* regexp, SearchImpl* search) {
153 MakeText(&s, nbytes);
157 SetBenchmarkBytesProcessed(static_cast<int64>(iters)*nbytes);
239 void SearchBigFixed(int iters, int nbytes, SearchImpl* search) {
242 s.append(nbytes/2, 'x');
245 MakeText(&t, nbytes/2)
    [all...]
  /external/regex-re2/re2/testing/
regexp_benchmark.cc 137 void MakeText(string* text, int nbytes) {
138 text->resize(nbytes);
140 for (int i = 0; i < nbytes; i++) {
148 // Makes text of size nbytes, then calls run to search
150 void Search(int iters, int nbytes, const char* regexp, SearchImpl* search) {
153 MakeText(&s, nbytes);
157 SetBenchmarkBytesProcessed(static_cast<int64>(iters)*nbytes);
239 void SearchBigFixed(int iters, int nbytes, SearchImpl* search) {
242 s.append(nbytes/2, 'x');
245 MakeText(&t, nbytes/2)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
sunspider-crypto-aes.html 173 var nBytes = nBits/8; // no bytes in key
174 var pwBytes = new Array(nBytes);
175 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
177 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
237 var nBytes = nBits/8; // no bytes in key
238 var pwBytes = new Array(nBytes);
239 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
242 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-aes.js 169 var nBytes = nBits/8; // no bytes in key
170 var pwBytes = new Array(nBytes);
171 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
173 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
233 var nBytes = nBits/8; // no bytes in key
234 var pwBytes = new Array(nBytes);
235 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
238 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
crypto-aes.js 169 var nBytes = nBits/8; // no bytes in key
170 var pwBytes = new Array(nBytes);
171 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
173 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
233 var nBytes = nBits/8; // no bytes in key
234 var pwBytes = new Array(nBytes);
235 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
238 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
crypto-aes.js 169 var nBytes = nBits/8; // no bytes in key
170 var pwBytes = new Array(nBytes);
171 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
173 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
233 var nBytes = nBits/8; // no bytes in key
234 var pwBytes = new Array(nBytes);
235 for (var i=0; i<nBytes; i++) pwBytes[i] = password.charCodeAt(i) & 0xff;
238 key = key.concat(key.slice(0, nBytes-16)); // key is now 16/24/32 bytes long
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
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_tokenizer.h 95 const char *pInput, int nBytes, /* Input buffer */
126 ** nul-terminated. This should either be fixed, or pInput/nBytes
  /external/kernel-headers/original/linux/sunrpc/
xdr.h 191 extern uint32_t *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes);
195 extern uint32_t *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 146 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3
147 data = binascii.a2b_uu(s[:nbytes])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 146 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3
147 data = binascii.a2b_uu(s[:nbytes])

Completed in 1269 milliseconds

1 2 3 4 56 7 8 91011>>