/external/kernel-headers/original/linux/netfilter/ |
nf_conntrack_common.h | 139 u_int32_t bytes; member in struct:ip_conntrack_counter
|
/external/libvpx/vp8/common/ |
duck_io.h | 108 int duck_read_blocking(int handle, unsigned char *buffer, int bytes); /* EMH 9-23-03 */
|
/external/libvpx/vp8/encoder/x86/ |
variance_impl_mmx.asm | 97 movq mm0, [rax] ; Copy eight bytes to mm0 98 movq mm1, [rbx] ; Copy eight bytes to mm1 116 movq mm1, [rbx] ; Copy eight bytes to mm1 122 movq mm0, [rax] ; Copy eight bytes to mm0 140 movq mm1, [rbx] ; Copy eight bytes to mm1 145 movq mm0, [rax] ; Copy eight bytes to mm0 163 movq mm1, [rbx] ; Copy eight bytes to mm1 168 movq mm0, [rax] ; Copy eight bytes to mm0 186 movq mm1, [rbx] ; Copy eight bytes to mm1 191 movq mm0, [rax] ; Copy eight bytes to mm [all...] |
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macos/ |
SDL_syscdrom_c.h | 114 unsigned char bytes[22]; member in union:CDCntrlParam::__anon6019
|
/external/skia/include/core/ |
SkMask.h | 47 kHorizontalLCD_Format, //!< 4 bytes/pixel: a/r/g/b 48 kVerticalLCD_Format, //!< 4 bytes/pixel: a/r/g/b 120 static uint8_t* AllocImage(size_t bytes);
|
SkWriter32.h | 71 // write count bytes (must be a multiple of 4) 95 // read from the stream, and write up to length bytes. Return the actual 96 // number of bytes written. 109 Block* newBlock(size_t bytes);
|
/external/v8/src/ |
bootstrapper.h | 95 static char* AllocateAutoDeletedArray(int bytes);
|
string-stream.cc | 41 char* HeapStringAllocator::allocate(unsigned bytes) { 42 space_ = NewArray<char>(bytes); 558 char* HeapStringAllocator::grow(unsigned* bytes) { 559 unsigned new_bytes = *bytes * 2; 561 if (new_bytes <= *bytes) { 568 memcpy(new_space, space_, *bytes); 569 *bytes = new_bytes; 577 char* NoAllocationStringAllocator::grow(unsigned* bytes) { 578 ASSERT(size_ >= *bytes); 579 *bytes = size_ [all...] |
/external/webkit/WebCore/platform/network/ |
FormData.cpp | 151 Vector<char> bytes; local 152 flatten(bytes); 153 return Latin1Encoding().decode(bytes.data(), bytes.size());
|
/frameworks/base/core/tests/coretests/src/android/content/ |
MemoryFileProvider.java | 186 byte[] bytes = cursor.getBlob(0); 187 MemoryFile file = new MemoryFile(null, bytes.length); 188 file.writeBytes(bytes, 0, 0, bytes.length);
|
/frameworks/base/include/media/stagefright/ |
AudioSource.h | 85 uint8_t *data, size_t bytes);
|
/hardware/msm7k/libaudio-qdsp5v2/ |
AudioHardware.cpp | 215 ssize_t AudioHardware::AudioStreamOutQ5V2::write(const void* buffer, size_t bytes) 217 // LOGD("AudioStreamOutQ5V2::write(%p, %u)", buffer, bytes); 219 size_t count = bytes; 285 return bytes; 293 usleep(bytes * 1000000 / frameSize() / sampleRate());
|
/libcore/luni/src/main/java/java/io/ |
DataOutputStream.java | 31 * The number of bytes written out so far. 63 * Returns the total number of bytes written to the target stream so far. 65 * @return the number of bytes written to the target stream. 75 * Writes {@code count} bytes from the byte array {@code buffer} starting at 83 * the number of bytes from the {@code buffer} to write. 150 * Writes the low order bytes from a string to the target stream. 153 * the string containing the bytes to write to the target stream. 163 byte[] bytes = new byte[str.length()]; 165 bytes[index] = (byte) str.charAt(index); 167 out.write(bytes); [all...] |
/libcore/luni/src/main/java/java/security/cert/ |
X509CRLSelector.java | 416 byte[] bytes = crlist.getExtensionValue("2.5.29.20"); 417 bytes = (byte[]) ASN1OctetString.getInstance().decode(bytes); 419 ASN1Integer.getInstance().decode(bytes));
|
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/ |
ZoneInfo.java | 41 private static String nullName(byte[] bytes, int begin) { 46 while (end < bytes.length && bytes[end] != 0) { 49 return new String(bytes, begin, end - begin, Charsets.US_ASCII);
|
/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
PlatformAddress.java | 124 public final void setByteArray(int offset, byte[] bytes, int bytesOffset, 127 OSMemory.setByteArray(osaddr + offset, bytes, bytesOffset, length); 157 public final void getByteArray(int offset, byte[] bytes, int bytesOffset, 160 OSMemory.getByteArray(osaddr + offset, bytes, bytesOffset, length);
|
/libcore/luni/src/main/native/ |
java_net_NetworkInterface.cpp | 181 jbyte bytes[IFHWADDRLEN]; local 184 bytes[i] = ifr.ifr_hwaddr.sa_data[i]; 185 if (bytes[i] != 0) { 193 env->SetByteArrayRegion(result, 0, IFHWADDRLEN, bytes);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
StringTest.java | 95 byte[] bytes = new byte[] {(byte) 'h', (byte) 'i'}; 96 assertEquals("hi", new String(bytes, cs)); 101 byte[] bytes = new byte[] {(byte) 'h', (byte) 'i'}; 102 final String result = new String(bytes, cs); 154 // Check that we use U+FFFD as the replacement string for invalid bytes.
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SecureRandomSpiTest.java | 87 protected void engineNextBytes(byte[] bytes) {}
|
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
DecoderUtil.java | 46 * @return the decoded bytes.
52 byte[] bytes = s.getBytes("US-ASCII");
55 new ByteArrayInputStream(bytes));
75 * @return the decoded bytes.
81 byte[] bytes = s.getBytes("US-ASCII");
84 new ByteArrayInputStream(bytes));
|
/system/core/toolbox/ |
dd.h | 65 uint64_t bytes; /* # of bytes written */ member in struct:__anon16003
|
/hardware/qcom/media/mm-video/vidc/vdec/inc/ |
omx_vdec.h | 182 OMX_U32 bytes 274 OMX_U32 bytes, 402 OMX_U32 bytes); 409 OMX_U32 bytes); 414 OMX_U32 bytes); 420 OMX_U32 bytes, 427 OMX_U32 bytes,
|
/external/qemu/audio/ |
ossaudio.c | 310 int bytes; local 326 bytes = cntinfo.ptr - oss->old_optr; 329 bytes = bufsize + cntinfo.ptr - oss->old_optr; 332 decr = audio_MIN (bytes >> hw->info.shift, live); 341 if (abinfo.bytes > bufsize) { 345 abinfo.bytes, bufsize); 347 abinfo.bytes = bufsize; 350 if (abinfo.bytes < 0) { 353 abinfo.bytes, bufsize); 358 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
ManifestTest.java | 314 byte[] bytes = manifestContent.getBytes("ISO-8859-1"); 315 new Manifest(new ByteArrayInputStream(bytes)); // the last NUL is ok 317 bytes[bytes.length - 1] = 26; 318 new Manifest(new ByteArrayInputStream(bytes)); // the last EOF is ok 320 bytes[bytes.length - 1] = 'A'; // the last line ignored 321 new Manifest(new ByteArrayInputStream(bytes)); 323 bytes[2] = 0; // NUL char in Manifest 325 new Manifest(new ByteArrayInputStream(bytes)); [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
JCESecretKeyFactory.java | 283 byte[] bytes = key.getEncoded(); 287 if (bytes.length == 16) 291 System.arraycopy(bytes, 0, longKey, 0, 16); 292 System.arraycopy(bytes, 0, longKey, 16, 8); 298 return new DESedeKeySpec(bytes);
|