HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 401 - 425 of 2220) sorted by null

<<11121314151617181920>>

  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Long_info.java 23 * (( long ) high_bytes << 32) + low_bytes , where the bytes of each of high_bytes
82 protected CONSTANT_Long_info (final UDataInputStream bytes) throws IOException
84 m_value = bytes.readLong ();
CONSTANT_Utf8_info.java 20 * The bytes of multibyte characters are stored in the class file in big-endian
77 protected CONSTANT_Utf8_info (final UDataInputStream bytes) throws IOException
79 m_value = bytes.readUTF ();
  /external/flac/libFLAC/include/private/
ogg_decoder_aspect.h 54 ogg_packet working_packet; /* as we work through the packet we will move working_packet.packet forward and working_packet.bytes down */
75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);
ogg_encoder_aspect.h 59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
61 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
  /external/flac/libFLAC/
ogg_encoder_aspect.c 111 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data)
141 if(bytes != FLAC__STREAM_METADATA_HEADER_LENGTH + FLAC__STREAM_METADATA_STREAMINFO_LENGTH) {
170 memcpy(b, buffer, bytes);
171 FLAC__ASSERT(b + bytes - synthetic_first_packet_body == sizeof(synthetic_first_packet_body));
173 packet.bytes = sizeof(synthetic_first_packet_body);
180 packet.bytes = bytes;
212 else if(is_metadata && current_frame == 0 && samples == 0 && bytes == 4 && 0 == memcmp(buffer, FLAC__STREAM_SYNC_STRING, sizeof(FLAC__STREAM_SYNC_STRING))) {
  /external/guava/guava/src/com/google/common/hash/
Hasher.java 23 * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes
32 @Override Hasher putBytes(byte[] bytes);
33 @Override Hasher putBytes(byte[] bytes, int off, int len);
Sink.java 38 * Puts an array of bytes into this sink.
40 * @param bytes a byte array
43 Sink putBytes(byte[] bytes);
46 * Puts a chunk of an array of bytes into this sink. {@code bytes[off]} is the first byte written,
47 * {@code bytes[off + len - 1]} is the last.
49 * @param bytes a byte array
51 * @param len the number of bytes to write
53 * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > bytes.length} or
56 Sink putBytes(byte[] bytes, int off, int len)
    [all...]
  /external/kernel-headers/original/asm-generic/
xor.h 19 xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
21 long lines = bytes / (sizeof (long)) / 8;
38 xor_8regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2,
41 long lines = bytes / (sizeof (long)) / 8;
59 xor_8regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2,
62 long lines = bytes / (sizeof (long)) / 8;
81 xor_8regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2,
84 long lines = bytes / (sizeof (long)) / 8;
104 xor_32regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
106 long lines = bytes / (sizeof (long)) / 8
    [all...]
  /external/libvorbis/lib/
misc.h 22 extern void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
37 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line);
  /external/valgrind/main/drd/tests/
annotate_ignore_rw.stderr.exp 4 Location 0x........ is 0 bytes inside local var "s_c"
annotate_ignore_write2.stderr.exp 4 Location 0x........ is 0 bytes inside local var "s_b"
9 Location 0x........ is 0 bytes inside local var "s_a"
14 Location 0x........ is 0 bytes inside local var "s_c"
19 Location 0x........ is 0 bytes inside local var "s_a"
  /external/valgrind/main/helgrind/tests/
tc16_byterace.stderr.exp 26 Location 0x........ is 0 bytes inside bytes[4],
41 Location 0x........ is 0 bytes inside bytes[4],
  /external/valgrind/main/memcheck/tests/
exitprog.stderr.exp 3 Address 0x........ is 0 bytes after a block of size 1,000,000 alloc'd
fwrite.stderr.exp 4 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
inline.stderr.exp 4 Address 0x........ is 0 bytes after a block of size 40 alloc'd
noisy_child.stderr.exp 4 Address 0x........ is 5 bytes inside a block of size 10 free'd
11 Address 0x........ is 0 bytes after a block of size 10 free'd
17 in use at exit: ... bytes in ... blocks
18 total heap usage: ... allocs, ... frees, ... bytes allocated
trivialleak.stderr.exp 1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileWriterChromium.cpp 75 void AsyncFileWriterChromium::didWrite(long long bytes, bool complete)
78 m_client->didWrite(bytes, complete);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DecoderAdapter.cpp 38 bool DecoderAdapter::decodeBytes(Vector<uint8_t>& bytes)
40 return m_decoder.decodeBytes(bytes);
EncoderAdapter.cpp 44 void EncoderAdapter::encodeBytes(const uint8_t* bytes, size_t size)
46 m_encoder->encodeBytes(bytes, size);
  /frameworks/av/include/media/stagefright/
MediaWriter.h 41 virtual void setMaxFileSize(int64_t bytes) { mMaxFileSizeLimitBytes = bytes; }
  /libcore/benchmarks/src/benchmarks/regression/
CharsetBenchmark.java 44 byte[] bytes = makeBytes(makeString(length));
46 new String(bytes, name);
51 byte[] bytes = makeBytes(makeString(length));
53 new String(bytes, 0, bytes.length);
58 byte[] bytes = makeBytes(makeString(length));
60 new String(bytes, 0, bytes.length, name);
74 * Translates the given characters to US-ASCII or ISO-8859-1 bytes, using the fact that
102 // Two bytes
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
Charsets.java 45 * Returns a new byte array containing the bytes corresponding to the given characters,
51 * Returns a new byte array containing the bytes corresponding to the given characters,
57 * Returns a new byte array containing the bytes corresponding to the given characters,
63 * Returns a new byte array containing the bytes corresponding to the given characters,
79 * Decodes the given US-ASCII bytes into the given char[]. Equivalent to but faster than:
86 public static native void asciiBytesToChars(byte[] bytes, int offset, int length, char[] chars);
89 * Decodes the given ISO-8859-1 bytes into the given char[]. Equivalent to but faster than:
95 public static native void isoLatin1BytesToChars(byte[] bytes, int offset, int length, char[] chars);
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatSymbolsTest.java 47 byte[] bytes = out.toByteArray();
50 ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes));
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPOutputStreamTest.java 43 public static byte[] gzip(byte[] bytes) throws IOException {
46 gzippedOut.write(bytes);

Completed in 564 milliseconds

<<11121314151617181920>>