/art/runtime/mirror/ |
art_field.cc | 43 void ArtField::SetOffset(MemberOffset num_bytes) { 49 DCHECK_ALIGNED(num_bytes.Uint32Value(), 8); 52 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtField, offset_), num_bytes.Uint32Value(), false);
|
/external/chromium/crypto/ |
rsa_private_key.cc | 178 int num_bytes, 180 PrependIntegerImpl(val, num_bytes, data, big_endian_); 184 int num_bytes, 190 tmp.assign(val, val + num_bytes); 198 while (start < (num_bytes - 1) && val[start] == 0x00) { 200 num_bytes--; 202 PrependBytes(val, start, num_bytes, data); 211 num_bytes++; 214 PrependTypeHeaderAndLength(kIntegerTag, num_bytes, data); 280 int num_bytes, 294 uint8 num_bytes = 0; local [all...] |
/external/chromium_org/crypto/ |
rsa_private_key.cc | 175 int num_bytes, 177 PrependIntegerImpl(val, num_bytes, data, big_endian_); 181 int num_bytes, 187 tmp.assign(val, val + num_bytes); 195 while (start < (num_bytes - 1) && val[start] == 0x00) { 197 num_bytes--; 199 PrependBytes(val, start, num_bytes, data); 208 num_bytes++; 211 PrependTypeHeaderAndLength(kIntegerTag, num_bytes, data); 274 int num_bytes, 288 uint8 num_bytes = 0; local [all...] |
/external/chromium_org/mojo/public/bindings/lib/ |
buffer.h | 25 virtual void* Allocate(size_t num_bytes, Destructor func = NULL) = 0; 42 virtual void* Allocate(size_t num_bytes, Destructor func = NULL) 54 void* AllocateInSegment(Segment* segment, size_t num_bytes); 99 // Grows the buffer by |num_bytes| and returns a pointer to the start of the 102 virtual void* Allocate(size_t num_bytes, Destructor func = NULL)
|
message_builder.cc | 16 header->num_bytes = static_cast<uint32_t>(buf_.size());
|
/external/chromium/net/base/ |
asn1_util.cc | 31 const unsigned num_bytes = data[1] & 0x7f; local 32 if (num_bytes == 0 || num_bytes > 2) 34 if (in->size() < 2 + num_bytes) 37 if (num_bytes == 2) { 51 *out_header_len = 2 + num_bytes; 52 len += 2 + num_bytes;
|
/external/chromium/chrome/common/ |
zip.cc | 78 int num_bytes = 0; local 81 num_bytes = unzReadCurrentFile(zip_file, buf, kZipBufSize); 82 if (num_bytes < 0) { 83 // If num_bytes < 0, then it's a specific UNZ_* error code. 86 err = num_bytes; 89 if (num_bytes > 0) { 90 if (num_bytes != stream.Write(buf, num_bytes, NULL)) { 95 } while (num_bytes > 0); 213 int num_bytes; local [all...] |
/external/chromium_org/ppapi/c/private/ |
ppb_udp_socket_private.h | 94 int32_t num_bytes, 107 int32_t num_bytes, 124 int32_t num_bytes, 130 int32_t num_bytes, 146 int32_t num_bytes, 152 int32_t num_bytes,
|
/external/chromium/net/udp/ |
udp_socket_win.cc | 251 DWORD num_bytes, flags; local 253 &num_bytes, FALSE, &flags); 255 int result = ok ? num_bytes : MapSystemError(WSAGetLastError()); 257 if (!ProcessSuccessfulRead(num_bytes, recv_from_address_)) 265 bool UDPSocketWin::ProcessSuccessfulRead(int num_bytes, IPEndPoint* address) { 267 read_bytes.Add(num_bytes); 281 DWORD num_bytes, flags; local 283 &num_bytes, FALSE, &flags); 285 int result = ok ? num_bytes : MapSystemError(WSAGetLastError()); 287 ProcessSuccessfulWrite(num_bytes); [all...] |
/external/chromium_org/ppapi/cpp/ |
udp_socket.cc | 73 int32_t num_bytes, 77 pp_resource(), buffer, num_bytes, callback.output(), 84 int32_t num_bytes, 89 pp_resource(), buffer, num_bytes, addr.pp_resource(),
|
/external/chromium_org/ppapi/thunk/ |
ppb_udp_socket_private_thunk.cc | 61 int32_t num_bytes, 70 return enter.SetResult(enter.object()->RecvFrom(buffer, num_bytes, 84 int32_t num_bytes, 90 return enter.SetResult(enter.object()->SendTo(buffer, num_bytes, addr,
|
ppb_udp_socket_thunk.cc | 56 int32_t num_bytes, 64 num_bytes, 71 int32_t num_bytes, 79 num_bytes,
|
/art/runtime/gc/space/ |
dlmalloc_space.h | 35 typedef void(*WalkCallback)(void *start, void *end, size_t num_bytes, void* callback_arg); 52 // Allocate num_bytes without allowing the underlying mspace to grow. 53 virtual mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, 56 // Allocate num_bytes allowing the underlying mspace to grow. 57 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated); 64 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated); 81 // in use, indicated by num_bytes equaling zero. 155 mirror::Object* AllocWithoutGrowthLocked(size_t num_bytes, size_t* bytes_allocated)
|
/external/chromium_org/mojo/public/system/ |
core_private.h | 34 uint32_t num_bytes, 40 uint32_t* num_bytes,
|
/external/chromium_org/mojo/system/ |
message_pipe_dispatcher.h | 36 const void* bytes, uint32_t num_bytes, 40 void* bytes, uint32_t* num_bytes,
|
/external/chromium_org/net/server/ |
http_connection.cc | 43 void HttpConnection::Shift(int num_bytes) { 44 recv_data_ = recv_data_.substr(num_bytes);
|
/external/chromium_org/ppapi/c/dev/ |
ppb_memory_dev.h | 37 * @param[in] num_bytes A number of bytes to allocate. 41 void* (*MemAlloc)(uint32_t num_bytes);
|
/external/chromium_org/ppapi/proxy/ |
udp_socket_private_resource.h | 35 int32_t num_bytes, 39 int32_t num_bytes,
|
udp_socket_resource.h | 31 int32_t num_bytes, 35 int32_t num_bytes,
|
udp_socket_resource_base.cc | 132 int32_t num_bytes, 135 if (!buffer || num_bytes <= 0) 143 bytes_to_read_ = std::min(num_bytes, kMaxReadSize); 166 int32_t num_bytes, 169 if (!buffer || num_bytes <= 0 || !addr) 176 if (num_bytes > kMaxWriteSize) 177 num_bytes = kMaxWriteSize; 184 PpapiHostMsg_UDPSocket_SendTo(std::string(buffer, num_bytes), *addr),
|
/external/chromium_org/ppapi/tests/ |
test_host_resolver.h | 32 int32_t num_bytes, 36 int32_t num_bytes,
|
test_host_resolver_private.h | 38 int32_t num_bytes, 42 int32_t num_bytes,
|
test_tcp_server_socket_private.cc | 76 size_t num_bytes) { 77 while (num_bytes > 0) { 80 socket->Read(buffer, num_bytes, callback.GetCallback())); 84 num_bytes -= callback.result(); 91 size_t num_bytes) { 92 while (num_bytes > 0) { 95 socket->Write(buffer, num_bytes, callback.GetCallback())); 99 num_bytes -= callback.result();
|
test_tcp_server_socket_private.h | 35 size_t num_bytes); 38 size_t num_bytes);
|
/external/ceres-solver/internal/ceres/ |
file.cc | 61 int num_bytes = ftell(file_descriptor); local 62 data->resize(num_bytes); 68 num_bytes, 70 if (num_read != num_bytes) { 72 << "expected bytes: " << num_bytes * sizeof((*data)[0])
|