Searched defs:bytes (Results 251 - 275 of 1230) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dlow_latency_event_posix.cc82 size_t bytes = sizeof(buffer); local
86 bytes));
87 if (bytes_written != static_cast<ssize_t>(bytes)) {
94 size_t bytes = sizeof(buffer); local
95 ssize_t bytes_read = HANDLE_EINTR(read(handles_[kReadHandle], buffer, bytes));
100 } else if (bytes_read == static_cast<ssize_t>(bytes)) {
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dbitrate.cc35 void Bitrate::Update(const int32_t bytes) { argument
37 bytes_count_ += bytes;
/external/chromium_org/ui/gl/
H A Dgl_context_android.cc99 bool GLContextEGL::GetTotalGpuMemory(size_t* bytes) { argument
100 DCHECK(bytes);
101 *bytes = 0;
149 *bytes = limit_bytes;
H A Dgl_context_egl.cc201 bool GLContextEGL::GetTotalGpuMemory(size_t* bytes) { argument
202 DCHECK(bytes);
203 *bytes = 0;
H A Dgl_context_glx.cc195 bool GLContextGLX::GetTotalGpuMemory(size_t* bytes) { argument
196 DCHECK(bytes);
197 *bytes = 0;
201 *bytes = 1024*kbytes;
/external/clang/lib/Frontend/
H A DTextDiagnostic.cpp70 int bytes = 0; local
74 ++bytes;
76 return bytes;
175 /// This function takes a raw source line and produces a mapping from the bytes
184 /// If a byte is the first in a sequence of bytes that together map to a single
186 /// column while the subsequent bytes will be -1.
195 /// (\\u3042 is represented in UTF-8 by three bytes and takes two columns to
223 /// The last element in the array is the number of bytes in the source string
229 /// (\\u3042 is represented in UTF-8 by three bytes and takes two columns to
269 int bytes() cons
[all...]
/external/deqp/executor/
H A DxeBatchResult.cpp40 void InfoLog::append (const deUint8* bytes, int numBytes) argument
45 deMemcpy(&m_data[oldSize], bytes, numBytes);
H A DxeTestCaseListParser.cpp79 void TestCaseListParser::parse (const deUint8* bytes, int numBytes) argument
82 m_xmlParser.feed(bytes, numBytes);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DOutput.java27 * bytes written to this instance.
76 * @return {@code 1..5;} the number of bytes actually written
86 * @return {@code 1..5;} the number of bytes actually written
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); argument
100 * @param bytes {@code non-null;} the array to write
101 * @param offset {@code >= 0;} offset into {@code bytes} for the first
103 * @param length {@code >= 0;} number of bytes to write
105 public void write(byte[] bytes, int offset, int length); argument
109 * a convenient shorthand for {@code write(bytes,
113 write(byte[] bytes) argument
[all...]
/external/dhcpcd/
H A Dbpf.c167 ssize_t bytes; local
180 bytes = read(fd, iface->buffer, iface->buffer_size);
181 if (bytes == -1)
183 else if ((size_t)bytes < sizeof(packet))
185 iface->buffer_len = bytes;
188 bytes = -1;
197 bytes = packet.bh_caplen - ETHER_HDR_LEN;
198 if (bytes > len)
199 bytes = len;
200 memcpy(data, payload, bytes);
[all...]
H A Dcontrol.c76 ssize_t bytes; local
81 bytes = read(l->fd, buffer, sizeof(buffer) - 1);
82 if (bytes == -1 || bytes == 0) {
86 buffer[bytes] = '\0';
88 e = buffer + bytes;
/external/e2fsprogs/lib/blkid/
H A Dgetsize.c54 #define BLKGETSIZE64 _IOR(0x12,114,size_t) /* return device size in bytes (u64 *arg) */
73 * Returns the number of bytes in a partition
195 long long bytes; local
207 bytes = blkid_get_dev_size(fd);
209 (unsigned long long)bytes >> 10);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DField_info.java75 final UDataInputStream bytes)
78 m_access_flags = bytes.readU2 ();
80 m_name_index = bytes.readU2 ();
81 m_descriptor_index = bytes.readU2 ();
84 final int attributes_count = bytes.readU2 ();
89 final Attribute_info attribute_info = Attribute_info.new_Attribute_info (constants, bytes);
74 Field_info(final IConstantCollection constants, final UDataInputStream bytes) argument
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DConstantValueAttribute_info.java121 final UDataInputStream bytes)
126 m_value_index = bytes.readU2 ();
120 ConstantValueAttribute_info(final int attribute_name_index, final long attribute_length, final UDataInputStream bytes) argument
H A DInnerClassesAttribute_info.java142 final UDataInputStream bytes)
147 final int class_count = bytes.readU2 ();
152 classes.add (new InnerClass_info (bytes));
141 InnerClassesAttribute_info(final int attribute_name_index, final long attribute_length, final UDataInputStream bytes) argument
H A DLineNumberTableAttribute_info.java165 final UDataInputStream bytes)
170 final int lines_count = bytes.readU2 ();
175 m_lines.add (new LineNumber_info (bytes));
164 LineNumberTableAttribute_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_NameAndType_info.java93 protected CONSTANT_NameAndType_info (final UDataInputStream bytes) throws IOException argument
95 m_name_index = bytes.readU2 ();
96 m_descriptor_index = bytes.readU2 ();
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java36 public static ClassDef parseClass (final byte [] bytes) argument
39 if (bytes == null) throw new IllegalArgumentException ("null input: bytes");
41 classParser parser = new classParser (new UDataInputStream (new ByteArrayIStream (bytes)));
49 public static ClassDef parseClass (final byte [] bytes, final int length) argument
52 if (bytes == null) throw new IllegalArgumentException ("null input: bytes");
54 classParser parser = new classParser (new UDataInputStream (new ByteArrayIStream (bytes, length)));
63 public static ClassDef parseClass (final InputStream bytes) argument
66 if (bytes
93 classParser(final UDataInputStream bytes) argument
[all...]
/external/flac/libFLAC/
H A Dogg_decoder_aspect.c105 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) argument
108 const size_t bytes_requested = *bytes;
121 * the same number of bytes from Ogg, then pass what's decoded down to
133 * to read in enough pages to return the full number of bytes
136 *bytes = 0;
137 while (*bytes < bytes_requested && !aspect->end_of_stream) {
140 size_t n = bytes_requested - *bytes;
141 if ((size_t)aspect->working_packet.bytes <= n) {
143 n = aspect->working_packet.bytes;
145 *bytes
[all...]
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 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/icu/icu4c/source/samples/uciter8/
H A Duciter8.c300 static const uint8_t bytes[]={ local
315 uiter_setLenient8(&iter2, (const char *)bytes, sizeof(bytes)-1);
319 uiter_setLenient8(&iter2, (const char *)bytes, -1);
324 uiter_setLenient8(&iter1, (const char*)bytes, -1);
/external/iproute2/include/linux/
H A Dgen_stats.h18 * @bytes: number of seen bytes
22 __u64 bytes; member in struct:gnet_stats_basic
26 __u64 bytes; member in struct:gnet_stats_basic_packed
/external/iptables/include/linux/netfilter/
H A Dxt_set.h70 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v3
/external/kernel-headers/original/uapi/linux/
H A Dgen_stats.h19 * @bytes: number of seen bytes
23 __u64 bytes; member in struct:gnet_stats_basic
27 __u64 bytes; member in struct:gnet_stats_basic_packed

Completed in 809 milliseconds

<<11121314151617181920>>