Searched refs:bytes (Results 201 - 225 of 1205) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkGraphics.cpp145 size_t SkGraphics::SetFontCacheLimit(size_t bytes) { argument
148 if (bytes < SK_MIN_FONT_CACHE_LIMIT) {
149 bytes = SK_MIN_FONT_CACHE_LIMIT;
151 gFontCacheLimit = bytes;
154 if (bytes < SkGlyphCache::GetCacheUsed()) {
155 SkGlyphCache::SetCacheUsed(bytes);
/external/valgrind/main/drd/tests/
H A Dannotate_ignore_rw2.stderr.exp4 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"
H A Dannotate_ignore_write.stderr.exp4 Location 0x........ is 0 bytes inside local var "s_b"
9 Location 0x........ is 0 bytes inside local var "s_c"
14 Location 0x........ is 0 bytes inside local var "s_a"
H A Dannotate_ignore_rw.stderr.exp4 Location 0x........ is 0 bytes inside local var "s_c"
/external/valgrind/main/memcheck/tests/
H A Drealloc3.stderr.exp3 Address 0x........ is 15 bytes after a block of size 5 alloc'd
9 Address 0x........ is 15 bytes after a block of size 5 alloc'd
15 Address 0x........ is 15 bytes after a block of size 5 alloc'd
/external/dropbear/
H A Dkeyimport.c226 * bytes used out of the source data.
285 * number of bytes consumed. Assumes dest contains enough space.
303 * Identifier is multiple bytes: the first byte is 11111
304 * plus the flags, and subsequent bytes encode the value of
311 continue; /* count the bytes */
327 * Length is multiple bytes. The first is 0x80 plus the
328 * number of subsequent bytes, and the subsequent bytes
332 continue; /* count the bytes */
346 struct mpint_pos { void *start; int bytes; }; member in struct:mpint_pos
[all...]
H A Dbignum.c55 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len) { argument
57 if (mp_read_unsigned_bin(mp, (unsigned char*)bytes, len) != MP_OKAY) {
/external/blktrace/btt/
H A Dtrace_queue.c32 update_q_histo(q_iop->t.bytes);
46 if (q_iop->t.bytes == 0)
/external/chromium/base/win/
H A Dscoped_bstr.h48 // Allocates a new BSTR with the specified number of bytes.
50 BSTR AllocateBytes(size_t bytes);
53 // |bytes|. This is useful when the BSTR was preallocated with e.g.
55 // not all the bytes are being used.
61 // NOTE: The actual allocated size of the BSTR MUST be >= bytes. That
63 void SetByteLen(size_t bytes);
77 // Returns the number of bytes allocated for the BSTR.
/external/chromium/net/tools/flip_server/
H A Dring_buffer.cc53 // Appends up-to-'size' bytes to the ringbuffer.
54 int RingBuffer::Write(const char* bytes, int size) { argument
67 memcpy(wptr, bytes + bytes_written, wsize);
75 const char* p = bytes;
82 const char* end = bytes + bytes_to_write;
131 // returns the number of bytes read into
132 int RingBuffer::Read(char* bytes, int size) { argument
145 memcpy(bytes + bytes_read, rptr, rsize);
153 char* p = bytes;
159 char* end = bytes
[all...]
/external/elfutils/tests/
H A Drun-readelf-test3.sh32 Note section [ 6] '.note' of 60 bytes at offset 0x120:
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DSourceFileAttribute_info.java85 final UDataInputStream bytes)
90 m_sourcefile_index = bytes.readU2 ();
84 SourceFileAttribute_info(final int attribute_name_index, final long attribute_length, final UDataInputStream bytes) argument
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Class_info.java88 protected CONSTANT_Class_info (final UDataInputStream bytes) throws IOException argument
90 m_name_index = bytes.readU2 ();
H A DCONSTANT_Double_info.java81 protected CONSTANT_Double_info (final UDataInputStream bytes) throws IOException argument
83 m_value = bytes.readDouble ();
H A DCONSTANT_Float_info.java21 * The bytes item of the CONSTANT_Float_info structure contains the value of
72 protected CONSTANT_Float_info (final UDataInputStream bytes) throws IOException argument
74 m_value = bytes.readFloat ();
H A DCONSTANT_Integer_info.java21 * The bytes item of the CONSTANT_Integer_info structure contains the value of
22 * the int constant. The bytes of the value are stored in big-endian (high byte
73 protected CONSTANT_Integer_info (final UDataInputStream bytes) throws IOException argument
75 m_value = bytes.readInt ();
H A DCONSTANT_Long_info.java23 * (( long ) high_bytes << 32) + low_bytes , where the bytes of each of high_bytes
82 protected CONSTANT_Long_info (final UDataInputStream bytes) throws IOException argument
84 m_value = bytes.readLong ();
H A DCONSTANT_Utf8_info.java20 * The bytes of multibyte characters are stored in the class file in big-endian
77 protected CONSTANT_Utf8_info (final UDataInputStream bytes) throws IOException argument
79 m_value = bytes.readUTF ();
/external/flac/libFLAC/include/private/
H A Dogg_decoder_aspect.h54 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);
H A Dogg_encoder_aspect.h59 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/
H A Dogg_encoder_aspect.c111 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) argument
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/
H A DHasher.java23 * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes
32 @Override Hasher putBytes(byte[] bytes); argument
33 @Override Hasher putBytes(byte[] bytes, int off, int len); argument
H A DSink.java38 * Puts an array of bytes into this sink.
40 * @param bytes a byte array
43 Sink putBytes(byte[] bytes); argument
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, in argument
[all...]
/external/kernel-headers/original/asm-generic/
H A Dxor.h19 xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
21 long lines = bytes / (sizeof (long)) / 8;
38 xor_8regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
41 long lines = bytes / (sizeof (long)) / 8;
59 xor_8regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
62 long lines = bytes / (sizeof (long)) / 8;
81 xor_8regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
84 long lines = bytes / (sizeof (long)) / 8;
104 xor_32regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
106 long lines = bytes / (sizeo
140 xor_32regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
186 xor_32regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
241 xor_32regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
305 xor_8regs_p_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
331 xor_8regs_p_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
361 xor_8regs_p_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
395 xor_8regs_p_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
432 xor_32regs_p_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
477 xor_32regs_p_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
534 xor_32regs_p_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
602 xor_32regs_p_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
[all...]
/external/libvorbis/lib/
H A Dmisc.h22 extern void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
37 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line);

Completed in 411 milliseconds

1234567891011>>