Searched refs:num_bytes (Results 201 - 225 of 247) sorted by relevance

12345678910

/external/valgrind/main/none/tests/s390x/
H A Dcu14_1.c129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 4 != 0)
135 for (i = 0; i < num_bytes / 4; i++) {
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_openssl.c851 int num_bytes, offset; local
856 num_bytes = BN_num_bytes((const BIGNUM *) a);
857 if ((size_t) num_bytes > buflen)
859 if (padlen > (size_t) num_bytes)
860 offset = padlen - num_bytes;
867 return num_bytes + offset;
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_openssl.c851 int num_bytes, offset; local
856 num_bytes = BN_num_bytes((const BIGNUM *) a);
857 if ((size_t) num_bytes > buflen)
859 if (padlen > (size_t) num_bytes)
860 offset = padlen - num_bytes;
867 return num_bytes + offset;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_openssl.c851 int num_bytes, offset; local
856 num_bytes = BN_num_bytes((const BIGNUM *) a);
857 if ((size_t) num_bytes > buflen)
859 if (padlen > (size_t) num_bytes)
860 offset = padlen - num_bytes;
867 return num_bytes + offset;
/external/chromium/net/server/
H A Dhttp_server.cc205 void HttpServer::Connection::Shift(int num_bytes) { argument
206 recv_data_ = recv_data_.substr(num_bytes);
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
H A Ddrive.cc146 size_t num_bytes = result; local
147 output->insert(output->end(), buffer_, buffer_ + num_bytes);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc743 virtual void ReleaseToSystem(size_t num_bytes) { argument
745 if (num_bytes <= extra_bytes_released_) {
748 extra_bytes_released_ = extra_bytes_released_ - num_bytes;
751 num_bytes = num_bytes - extra_bytes_released_;
752 // num_bytes might be less than one page. If we pass zero to
755 Length num_pages = max<Length>(num_bytes >> kPageShift, 1);
758 if (bytes_released > num_bytes) {
759 extra_bytes_released_ = bytes_released - num_bytes;
761 // The PageHeap wasn't able to release num_bytes
[all...]
/external/libnfc-nci/src/adaptation/
H A Dlibmain.c52 NFC_API extern void *nfa_mem_co_alloc(UINT32 num_bytes) argument
54 return malloc(num_bytes);
/external/libyuv/files/source/
H A Dmjpeg_decoder.cc450 long num_bytes) { // NOLINT
451 cinfo->src->next_input_byte += num_bytes;
449 skip_input_data(j_decompress_ptr cinfo, long num_bytes) argument
/external/chromium/net/http/
H A Dhttp_cache_transaction.h223 int DoCacheWriteData(int num_bytes);
/external/chromium_org/net/http/
H A Dhttp_cache_transaction.h257 int DoCacheWriteData(int num_bytes);
/external/srec/srec/EventLog/src/
H A DEventLogImpl.c689 ESR_ReturnCode SR_EventLog_AudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes) argument
693 size_t size = num_bytes / impl->waveform_bytes_per_sample;
695 if (num_bytes > 0 && pfwrite(buffer, impl->waveform_bytes_per_sample, size, impl->waveformFile) != size)
706 impl->waveform_num_bytes += num_bytes;
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc748 int num_bytes = 2; local
751 return num_bytes;
778 return num_bytes;
785 num_bytes = 3;
797 return num_bytes;
/external/v8/src/x64/
H A Ddisasm-x64.cc739 int num_bytes = 2; local
742 return num_bytes;
769 return num_bytes;
776 num_bytes = 3;
788 return num_bytes;
/external/chromium/net/disk_cache/
H A Deviction.cc119 while ((header_->num_bytes > target_size || test_mode_) && next.get()) {
321 while ((header_->num_bytes > target_size || test_mode_) &&
/external/libnfc-nci/src/nfc/int/
H A Drw_int.h109 UINT8 num_bytes; /* Number of reserved bytes as per the TLV */ member in struct:__anon21233
281 UINT8 num_bytes; /* Number of reserved bytes as per the TLV */ member in struct:__anon21238
/external/chromium/net/tools/dump_cache/
H A Ddump_files.cc62 printf("total bytes: %d\n", header.num_bytes);
/external/chromium_org/google_apis/drive/
H A Dbase_requests.h110 int num_bytes,
/external/libnfc-nci/src/nfc/include/
H A Drw_api.h183 UINT8 num_bytes; /* number of reserved/lock bytes based on the type of tlv */ member in struct:__anon21200
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1252 static int32_t Pnacl_M29_PPB_UDPSocket_RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, PP_Resource* addr, struct PP_CompletionCallback* callback) { argument
1254 return iface->RecvFrom(udp_socket, buffer, num_bytes, addr, *callback);
1257 static int32_t Pnacl_M29_PPB_UDPSocket_SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, PP_Resource addr, struct PP_CompletionCallback* callback) { argument
1259 return iface->SendTo(udp_socket, buffer, num_bytes, addr, *callback);
3580 static int32_t Pnacl_M17_PPB_UDPSocket_Private_RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, struct PP_CompletionCallback* callback) { argument
3582 return iface->RecvFrom(udp_socket, buffer, num_bytes, *callback);
3590 static int32_t Pnacl_M17_PPB_UDPSocket_Private_SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, const struct PP_NetAddress_Private* addr, struct PP_CompletionCallback* callback) { argument
3592 return iface->SendTo(udp_socket, buffer, num_bytes, addr, *callback);
3624 static int32_t Pnacl_M19_PPB_UDPSocket_Private_RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, struct PP_CompletionCallback* callback) { argument
3626 return iface->RecvFrom(udp_socket, buffer, num_bytes, *callbac
3634 Pnacl_M19_PPB_UDPSocket_Private_SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, const struct PP_NetAddress_Private* addr, struct PP_CompletionCallback* callback) argument
3673 Pnacl_M23_PPB_UDPSocket_Private_RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, struct PP_CompletionCallback* callback) argument
3683 Pnacl_M23_PPB_UDPSocket_Private_SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, const struct PP_NetAddress_Private* addr, struct PP_CompletionCallback* callback) argument
[all...]
/external/chromium_org/third_party/libXNVCtrl/
H A DNVCtrl.c525 req->num_bytes = size;
1083 req->num_bytes = inSize;
1096 outSize = rep.num_bytes;
/external/v8/src/ia32/
H A Ddisasm-ia32.cc584 int num_bytes = 2; local
601 num_bytes = 3;
615 return num_bytes;
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_win.h271 int num_bytes,
/external/chromium_org/net/tools/dump_cache/
H A Ddump_files.cc106 printf("total bytes: %d\n", header.num_bytes);
/external/libnfc-nci/src/nfa/include/
H A Dnfa_api.h344 UINT8 num_bytes; /* number of lock/reserved bytes */ member in struct:__anon20856

Completed in 1068 milliseconds

12345678910