/external/libffi/src/powerpc/ |
ffi.c | 68 | Return address from ffi_call_SYSV 4bytes | higher addresses 92 const unsigned bytes = ecif->cif->bytes; local 144 stacktop.c = (char *) stack + bytes; 156 FFI_ASSERT ((bytes & 0xF) == 0); 380 | Ret addr from ffi_call_LINUX64 8bytes | higher addresses 382 | CR save area 8bytes | 412 const unsigned long bytes = ecif->cif->bytes; local 455 stacktop.c = (char *) stack + bytes; 594 unsigned bytes; local [all...] |
/external/libogg/src/ |
bitwise.c | 60 long bytes=bits>>3; local 62 bits-=bytes*8; 63 b->ptr=b->buffer+bytes; 65 b->endbyte=bytes; 71 long bytes=bits>>3; local 73 bits-=bytes*8; 74 b->ptr=b->buffer+bytes; 76 b->endbyte=bytes; 184 long bytes=bits/8; local 185 bits-=bytes*8 512 long bytes,i; local 547 long bytes,i; local 583 long bytes,i; local [all...] |
/external/llvm/lib/Target/AArch64/Disassembler/ |
AArch64Disassembler.cpp | 214 uint8_t bytes[4]; local 216 // We want to read exactly 4 bytes of data. 217 if (Region.readBytes(Address, 4, bytes) == -1) { 223 uint32_t insn = (bytes[3] << 24) | 224 (bytes[2] << 16) | 225 (bytes[1] << 8) | 226 (bytes[0] << 0);
|
/external/openssl/crypto/ |
mem_dbg.c | 661 long bytes; member in struct:mem_leak_st 705 l->bytes+=m->num; 766 ml.bytes=0; 773 BIO_printf(b,"%ld bytes leaked in %d chunks\n", 774 ml.bytes,ml.chunks);
|
/external/protobuf/src/google/protobuf/io/ |
coded_stream.cc | 149 << " bytes). To increase the limit (or to disable these " 248 uint8 bytes[sizeof(*value)]; local 252 // Fast path: Enough bytes in the buffer to read directly. 257 if (!ReadRaw(bytes, sizeof(*value))) return false; 258 ptr = bytes; 265 uint8 bytes[sizeof(*value)]; local 269 // Fast path: Enough bytes in the buffer to read directly. 274 if (!ReadRaw(bytes, sizeof(*value))) return false; 275 ptr = bytes; 286 // Fast path: We have enough bytes left in the buffer to guarantee tha 586 uint8 bytes[sizeof(value)]; local 601 uint8 bytes[sizeof(value)]; local 656 uint8 bytes[kMaxVarint32Bytes]; local 756 uint8 bytes[kMaxVarintBytes]; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jmemdos.c | 467 long length; /* It's easy to access first 4 bytes */ 468 char bytes[18]; /* Misaligned fields in here! */ member in union:__anon26695 472 #define FIELD_AT(spec,offset,type) (*((type *) &(spec.bytes[offset])))
|
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/ |
SDL_epocaudio.cpp | 502 TInt bytes = 2; local 534 const TInt buflen = spec->size;// * bytes * spec->channels; 541 CEpocAudio::Current(thisdevice).Open(spec->freq, spec->channels, type, bytes); 604 SDL_TRACE1("Wrote %d bytes of audio data\n", buflen);
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macos/ |
SDL_syscdrom_c.h | 114 unsigned char bytes[22]; member in union:CDCntrlParam::__anon26770
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_video.c | 162 int bytes = (bpp + 7) / 8; local 166 if (bytes == DFB_BYTES_PER_PIXEL(dlc.pixelformat) && bytes > 1) 169 switch (bytes)
|
/external/qemu/ |
posix-aio-compat.c | 131 * successful if it has written the number full number of bytes. 481 /* read all bytes from signal pipe */ 483 char bytes[16]; local 485 len = read(s->rfd, bytes, sizeof(bytes)); 488 if (len == sizeof(bytes))
|
/external/regex-re2/re2/testing/ |
re2_test.cc | 1003 // Both should match in either mode, bytes or UTF-8 1110 int bytes = 15 * 1024; \/\/ enough to crash PCRE local [all...] |
/external/tremolo/Tremolo/ |
ogg.h | 152 long bytes; member in struct:__anon28754 192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface_named_pipe.c | 89 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes, 96 static VOID WINAPI global_iface_read_completed(DWORD err, DWORD bytes, 254 static VOID WINAPI ctrl_iface_write_completed(DWORD err, DWORD bytes, 259 "err=%d bytes=%d", dst, (int) err, (int) bytes); 346 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes, 351 "bytes=%d", dst, (int) err, (int) bytes); 352 if (err == 0 && bytes > 0) 353 wpa_supplicant_ctrl_iface_rx(dst, bytes); 361 DWORD bytes; local 778 DWORD bytes; local [all...] |
/external/yaffs2/yaffs2/utils/ |
mkyaffs2image.c | 260 __u8 bytes[chunkSize]; local 263 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *)bytes; 264 char *xb = (char *)bytes + sizeof(*oh); 274 memset(bytes,0xff,sizeof(bytes)); 322 return write_chunk(bytes,objId,0,0xffff); 450 __u8 bytes[chunkSize]; local 457 memset(bytes,0xff,sizeof(bytes)); 458 while((nBytes = read(h,bytes,sizeof(bytes))) > 0 [all...] |
/frameworks/base/media/jni/audioeffect/ |
android_media_AudioEffect.cpp | 102 jbyte *bytes; local 155 bytes = env->GetByteArrayElements(array, NULL); 156 memcpy(bytes, p, size); 157 env->ReleaseByteArrayElements(array, bytes, 0);
|
/frameworks/base/services/java/com/android/server/am/ |
NativeCrashListener.java | 237 int bytes; local 240 bytes = Libcore.os.read(fd, buf, 0, buf.length); 241 if (bytes > 0) { 243 String s = new String(buf, 0, bytes, "UTF-8"); 244 Slog.v(TAG, "READ=" + bytes + "> " + s); 247 if (buf[bytes-1] == 0) { 248 os.write(buf, 0, bytes-1); // exclude the EOD token 252 os.write(buf, 0, bytes); 254 } while (bytes > 0);
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/ |
OMX_G711Decoder.c | 80 extern int bytes[500] = {0}; variable [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/ |
OMX_G726Enc_Utils.c | 90 extern int bytes[500] = {0}; variable 114 bytes[e]=size; 116 printf("__ Allocating %d bytes on address %p, line %d file %s\n", size, p, line, s); 129 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s); [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
SerializationBenchmark.java | 27 private static byte[] bytes(Object o) throws Exception { method in class:SerializationBenchmark 95 byte[] bytes = bytes(object); 96 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ArrayTest.java | 24 private static byte[] bytes; field in class:ArrayTest 35 bytes = new byte[] { (byte) 0xff }; 46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} 58 assertEquals(bytes[0], Array.getByte(bytes, 0)); 70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} 82 assertEquals((double) bytes[0], Array.getDouble(bytes, 0)); 94 assertEquals((float) bytes[0], Array.getFloat(bytes, 0)) [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
quotearg.c | 396 be the first bytes of multibyte characters, which means 461 size_t bytes = mbrtowc (&w, &arg[i + m], local 463 if (bytes == 0) 465 else if (bytes == (size_t) -1) 470 else if (bytes == (size_t) -2) 487 for (j = 1; j < bytes; j++) 501 m += bytes; 602 embedded null bytes only if ARGSIZE is not SIZE_MAX, SIZE is not 611 /* Elide embedded null bytes if we can't return a size. */ 702 /* Elide embedded null bytes since we don't return a size. * [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileio.py | 16 from test.test_support import py3k_bytes as bytes namespace 35 p.write(bytes(range(10))) 42 self.f.write(bytes(range(20))) 326 # Opening a bytes filename 369 f.write(bytes(bytearray(range(10)))) 384 f.write(bytes(range(11))) 389 if data != bytes(range(5)):
|