Searched refs:body_size (Results 1 – 8 of 8) sorted by relevance
95 size_t body_size; member
885 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { in evhttp_handle_chunked_read()889 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()895 req->body_size += (size_t)ntoread; in evhttp_handle_chunked_read()982 if ((size_t)(req->body_size + evbuffer_get_length(buf)) < req->body_size) { in evhttp_read_body()987 req->body_size += evbuffer_get_length(buf); in evhttp_read_body()998 req->body_size += n; in evhttp_read_body()1002 if (req->body_size > req->evcon->max_body_size || in evhttp_read_body()3473 req->body_size = 0; in evhttp_request_new()
505 o Correctly count req->body_size on http usage without Content-Length (8e342e5)
1659 int body_size = desc.instr_size; in NewCode() local1662 body_size = RoundUp(body_size, kInt64Size) + desc.unwinding_info_size + in NewCode()1665 int obj_size = Code::SizeFor(RoundUp(body_size, kObjectAlignment)); in NewCode()
5151 inline int body_size();5217 static int SizeFor(int body_size) { in SizeFor() argument5218 DCHECK_SIZE_TAG_ALIGNED(body_size); in SizeFor()5219 return RoundUp(kHeaderSize + body_size, kCodeAlignment); in SizeFor()
6745 int Code::body_size() { in body_size() function6795 int Code::CodeSize() { return SizeFor(body_size()); } in CodeSize()
1087 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk() local1088 if (vm->Commit(body, body_size, true)) { in AllocateChunk()1096 vm->Uncommit(body, body_size); in AllocateChunk()
80 isolate->counters()->wasm_generated_code_size()->Increment(code->body_size()); in RecordStats()