/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:__anon33916 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::__anon34002
|
/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/skia/src/gpu/ |
GrGpu.cpp | 516 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; local 517 fVertexPool->putBack(bytes); 524 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); local 525 fIndexPool->putBack(bytes); 562 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; local 563 fVertexPool->putBack(bytes); 571 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); local 572 fIndexPool->putBack(bytes);
|
/external/skia/src/ports/ |
SkImageDecoder_WIC.cpp | 325 uint8_t* bytes = pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel(); local 327 SkPMColor* src = reinterpret_cast<SkPMColor*>(bytes); 328 SkColor* dst = reinterpret_cast<SkColor*>(bytes);
|
/external/tremolo/Tremolo/ |
ogg.h | 152 long bytes; member in struct:__anon36186 192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
|
/external/webp/src/enc/ |
picture_csp.c | 27 uint8_t bytes[4]; member in union:__anon37953 29 #define ALPHA_IS_LAST (test_endian.bytes[3] == 0xff) 45 if (alpha[x] != 0xff) return 1; // TODO(skal): check 4/8 bytes at a time. 175 int step, // bytes per pixel 176 int rgb_stride, // bytes per scanline
|
/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);
|
/hardware/libhardware/tests/camera2/ |
CameraStreamFixture.h | 320 size_t bytes; local 323 bytes = fwrite( 326 if (bytes != img.width) { 344 bytes = fwrite(reinterpret_cast<const char*>(px), 346 if (bytes != img.width / 2) {
|
/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/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
FileOutputStreamTest.java | 34 private byte[] bytes; field in class:FileOutputStreamTest 39 bytes = new byte[10]; 40 for (int i = 0; i < bytes.length; i++) { 41 bytes[i] = (byte) i; 196 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString 287 fos.write(bytes); 300 fos.write(bytes); 302 fos.write(bytes); 304 fos.write(bytes); 321 fos.write(bytes); [all...] |
/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/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)):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
uuid.py | 38 # get the raw 16 bytes of the UUID 39 >>> x.bytes 43 >>> uuid.UUID(bytes=x.bytes) 61 of 16 bytes (with all the integer fields in big-endian order) as an 62 argument named 'bytes', or a string of 16 bytes (with the first three 68 bytes the UUID as a 16-byte string (containing the six 101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None, 104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte 208 bytes = property(get_bytes) variable in class:UUID [all...] |
/prebuilts/python/linux-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)):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
uuid.py | 38 # get the raw 16 bytes of the UUID 39 >>> x.bytes 43 >>> uuid.UUID(bytes=x.bytes) 61 of 16 bytes (with all the integer fields in big-endian order) as an 62 argument named 'bytes', or a string of 16 bytes (with the first three 68 bytes the UUID as a 16-byte string (containing the six 101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None, 104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte 208 bytes = property(get_bytes) variable in class:UUID [all...] |
/system/core/toolbox/upstream-netbsd/bin/dd/ |
dd.h | 101 uint64_t bytes; /* # of bytes written */ member in struct:__anon84531
|