Home
last modified time | relevance | path

Searched refs:body_size (Results 1 – 9 of 9) sorted by relevance

/external/libevent/include/event2/
Dhttp_struct.h95 size_t body_size; member
/external/tensorflow/tensorflow/core/kernels/data/
Dreader_dataset_ops.cc413 uint64 body_size = in GetNextInternal() local
416 if (body_size % dataset()->record_bytes_ != 0) { in GetNextInternal()
422 "\" has body length ", body_size, in GetNextInternal()
/external/libevent/
Dhttp.c932 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { in evhttp_handle_chunked_read()
936 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()
942 req->body_size += (size_t)ntoread; in evhttp_handle_chunked_read()
1010 req->body_size += n; in evhttp_lingering_close()
1057 if ((size_t)(req->body_size + evbuffer_get_length(buf)) < req->body_size) { in evhttp_read_body()
1062 req->body_size += evbuffer_get_length(buf); in evhttp_read_body()
1073 req->body_size += n; in evhttp_read_body()
1077 if (req->body_size > req->evcon->max_body_size || in evhttp_read_body()
3934 req->body_size = 0; in evhttp_request_new()
DChangeLog-2.0441 o Correctly count req->body_size on http usage without Content-Length (8e342e5)
/external/v8/src/
Dfactory.cc1659 int body_size = desc.instr_size; in NewCode() local
1662 body_size = RoundUp(body_size, kInt64Size) + desc.unwinding_info_size + in NewCode()
1665 int obj_size = Code::SizeFor(RoundUp(body_size, kObjectAlignment)); in NewCode()
Dobjects.h5148 inline int body_size();
5214 static int SizeFor(int body_size) { in SizeFor() argument
5215 DCHECK_SIZE_TAG_ALIGNED(body_size); in SizeFor()
5216 return RoundUp(kHeaderSize + body_size, kCodeAlignment); in SizeFor()
Dobjects-inl.h6745 int Code::body_size() { in body_size() function
6795 int Code::CodeSize() { return SizeFor(body_size()); } in CodeSize()
/external/v8/src/heap/
Dspaces.cc1087 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk() local
1088 if (vm->Commit(body, body_size, true)) { in AllocateChunk()
1096 vm->Uncommit(body, body_size); in AllocateChunk()
/external/v8/src/wasm/
Dwasm-module.cc80 isolate->counters()->wasm_generated_code_size()->Increment(code->body_size()); in RecordStats()