HomeSort by relevance Sort by last modified time
    Searched full:num_bytes (Results 76 - 100 of 261) sorted by null

1 2 34 5 6 7 8 91011

  /external/webrtc/src/system_wrappers/source/
file_impl.cc 254 size_t num_bytes = fwrite(buf, 1, length, _id); local
255 if (num_bytes > 0)
257 _sizeInBytes += num_bytes;
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
mlos_linux.c 42 * @param num_bytes number of bytes
45 void *inv_malloc(unsigned int num_bytes)
48 void *alloc_ptr = malloc(num_bytes);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
mlos_linux.c 42 * @param num_bytes number of bytes
45 void *inv_malloc(unsigned int num_bytes)
48 void *alloc_ptr = malloc(num_bytes);
  /external/chromium/chrome/browser/sessions/
base_session_service.cc 32 int num_bytes = str.size() * sizeof(char); local
33 if (*bytes_written + num_bytes < max_bytes) {
34 *bytes_written += num_bytes;
44 int num_bytes = str.size() * sizeof(char16); local
45 if (*bytes_written + num_bytes < max_bytes) {
46 *bytes_written += num_bytes;
  /external/jpeg/
jdatasrc.c 128 skip_input_data (j_decompress_ptr cinfo, long num_bytes)
136 if (num_bytes > 0) {
137 while (num_bytes > (long) src->pub.bytes_in_buffer) {
138 num_bytes -= (long) src->pub.bytes_in_buffer;
144 src->pub.next_input_byte += (size_t) num_bytes;
145 src->pub.bytes_in_buffer -= (size_t) num_bytes;
  /external/qemu/distrib/jpeg-6b/
jdatasrc.c 128 skip_input_data (j_decompress_ptr cinfo, long num_bytes)
136 if (num_bytes > 0) {
137 while (num_bytes > (long) src->pub.bytes_in_buffer) {
138 num_bytes -= (long) src->pub.bytes_in_buffer;
144 src->pub.next_input_byte += (size_t) num_bytes;
145 src->pub.bytes_in_buffer -= (size_t) num_bytes;
  /external/chromium_org/net/disk_cache/
stats.h 58 bool Init(void* data, int num_bytes, Addr address);
84 int SerializeStats(void* data, int num_bytes, Addr* address);
stats.cc 97 bool Stats::Init(void* data, int num_bytes, Addr address) {
100 if (!num_bytes) {
104 } else if (num_bytes >= static_cast<int>(sizeof(*stats))) {
213 int Stats::SerializeStats(void* data, int num_bytes, Addr* address) {
215 if (num_bytes < static_cast<int>(sizeof(*stats)))
  /external/chromium_org/ppapi/api/private/
ppb_udp_socket_private.idl 77 [in] int32_t num_bytes,
92 [in] int32_t num_bytes,
  /external/chromium_org/ppapi/proxy/
udp_socket_resource_base.h 58 int32_t num_bytes,
63 int32_t num_bytes,
  /external/chromium/chrome/browser/chromeos/
external_metrics_unittest.cc 27 int num_bytes; local
28 num_bytes = write(fd, &l, sizeof(l));
29 num_bytes = write(fd, name, strlen(name) + 1);
30 num_bytes = write(fd, value, strlen(value) + 1);
  /external/libnfc-nci/src/nfa/include/
nfa_mem_co.h 54 NFC_API extern void *nfa_mem_co_alloc (UINT32 num_bytes);
  /external/chromium_org/base/
pickle.cc 47 const char* PickleIterator::GetReadPointerAndAdvance(int num_bytes) {
48 if (num_bytes < 0 || read_end_ptr_ - read_ptr_ < num_bytes)
51 read_ptr_ += AlignInt(num_bytes, sizeof(uint32));
58 int64 num_bytes = static_cast<int64>(num_elements) * size_element; local
59 int num_bytes32 = static_cast<int>(num_bytes);
60 if (num_bytes != static_cast<int64>(num_bytes32))
  /external/chromium_org/ppapi/api/
ppb_udp_socket.idl 124 * must be at least as large as <code>num_bytes</code>.
125 * @param[in] num_bytes The number of bytes to receive.
136 [in] int32_t num_bytes,
146 * @param[in] num_bytes The number of bytes to send.
159 [in] int32_t num_bytes,
  /external/chromium_org/ppapi/c/
ppb_udp_socket.h 140 * must be at least as large as <code>num_bytes</code>.
141 * @param[in] num_bytes The number of bytes to receive.
152 int32_t num_bytes,
161 * @param[in] num_bytes The number of bytes to send.
174 int32_t num_bytes,
  /external/chromium/crypto/
rsa_private_key.h 92 void PrependInteger(uint8* val, int num_bytes, std::list<uint8>* data);
94 // Prepends the integer stored in |val| - |val + num_bytes| with |big_endian|
97 int num_bytes,
117 // |num_bytes| bytes onto |data|.
120 int num_bytes,
132 void PrependBitString(uint8* val, int num_bytes, std::list<uint8>* output);
  /external/chromium_org/crypto/
rsa_private_key.h 88 void PrependInteger(uint8* val, int num_bytes, std::list<uint8>* data);
90 // Prepends the integer stored in |val| - |val + num_bytes| with |big_endian|
93 int num_bytes,
113 // |num_bytes| bytes onto |data|.
116 int num_bytes,
128 void PrependBitString(uint8* val, int num_bytes, std::list<uint8>* output);
  /external/chromium_org/ppapi/examples/audio_input/
audio_input.cc 272 uint32_t num_bytes,
280 PP_DCHECK(num_bytes <= buffer_size);
281 PP_DCHECK(num_bytes % (thiz->channel_count_ * sizeof(int16_t)) == 0);
282 memcpy(thiz->samples_, samples, num_bytes);
283 memset(reinterpret_cast<char*>(thiz->samples_) + num_bytes, 0,
284 buffer_size - num_bytes);
  /external/chromium_org/tools/android/forwarder2/
socket.cc 292 int Socket::ReadNumBytes(void* buffer, size_t num_bytes) {
295 while (bytes_read < num_bytes && ret > 0) {
296 ret = Read(static_cast<char*>(buffer) + bytes_read, num_bytes - bytes_read);
353 int Socket::WriteNumBytes(const void* buffer, size_t num_bytes) {
356 while (bytes_written < num_bytes && ret > 0) {
358 num_bytes - bytes_written);
  /external/qemu/distrib/sdl-1.2.15/src/audio/nas/
SDL_nasaudio.c 306 this2->really += event->num_bytes;
308 this2->buf_free += event->num_bytes;
310 this2->buf_free = event->num_bytes;
318 this2->really += event->num_bytes;
320 this2->buf_free += event->num_bytes;
322 this2->buf_free = event->num_bytes;
  /external/chromium_org/base/third_party/symbolize/
symbolize.cc 132 ssize_t num_bytes = 0; local
133 while (num_bytes < count) {
135 NO_INTR(len = read(fd, buf0 + num_bytes, count - num_bytes));
142 num_bytes += len;
144 SAFE_ASSERT(num_bytes <= count);
145 return num_bytes;
397 const ssize_t num_bytes = ReadPersistent(fd_, buf_, buf_len_); local
398 if (num_bytes <= 0) { // EOF or error.
401 eod_ = buf_ + num_bytes;
413 const ssize_t num_bytes = ReadPersistent(fd_, append_pos, local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.h 63 // nothing if |num_bytes| is 0.
64 void AppendDataBytes(const char* buffer, int32_t num_bytes);
  /external/chromium_org/net/quic/
quic_stream_sequencer.h 63 // Consumes |num_bytes| data. Used in conjunction with |GetReadableRegions|
65 void MarkConsumed(size_t num_bytes);
  /external/libnfc-nci/src/udrv/include/
uamp_api.h 125 ** num_bytes: number of bytes to write
131 BT_API UINT16 UAMP_Write(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 num_bytes, tUAMP_CH channel);
  /external/srec/srec/EventLog/include/
riff.h 226 unsigned int num_bytes,
237 unsigned int *num_bytes,

Completed in 816 milliseconds

1 2 34 5 6 7 8 91011