Home
last modified time | relevance | path

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

/external/mesa3d/src/mapi/glapi/gen/
DglX_doc.py98 def body_size(self, f): member in PrintGlxProtoText
121 [size, size_str, pad_str] = self.body_size(f)
137 [size, size_str, pad_str] = self.body_size(f)
/external/v8/src/wasm/
Dencoder.cc446 size_t body_size; member
448 size_t total() { return header_size + body_size; } in total()
452 body_size += body; in Add()
497 if (sizes.body_size > 0) sizes.Add(1, 0); in WriteTo()
570 if (sizes.body_size > 0) EmitUint8(&header, kDeclEnd); in WriteTo()
/external/libevent/include/event2/
Dhttp_struct.h95 size_t body_size; member
/external/libevent/
Dhttp.c885 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()
DChangeLog505 o Correctly count req->body_size on http usage without Content-Length (8e342e5)
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
Dhttp.py656 self.body_size = len(self.body or '')
700 self.headers['content-length'] = str(self.body_size)
796 start_headers['content-length'] = str(self.body_size)
/external/v8/test/unittests/compiler/
Dscheduler-unittest.cc91 void CheckLoop(BasicBlockVector* order, BasicBlock** blocks, int body_size) { in CheckLoop() argument
96 CHECK_EQ(body_size, end->rpo_number() - header->rpo_number()); in CheckLoop()
97 for (int i = 0; i < body_size; i++) { in CheckLoop()
/external/v8/src/heap/
Dspaces.cc903 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk() local
904 if (vm->Commit(body, body_size, true)) { in AllocateChunk()
912 vm->Uncommit(body, body_size); in AllocateChunk()
/external/v8/src/
Dfactory.cc1425 int body_size = RoundUp(desc.instr_size, kObjectAlignment); in NewCode() local
1426 int obj_size = Code::SizeFor(body_size); in NewCode()
Dobjects.h5070 inline int body_size();
5089 static int SizeFor(int body_size) { in SizeFor() argument
5090 DCHECK_SIZE_TAG_ALIGNED(body_size); in SizeFor()
5091 return RoundUp(kHeaderSize + body_size, kCodeAlignment); in SizeFor()
Dobjects-inl.h6420 int Code::body_size() { in body_size() function
6458 int Code::CodeSize() { return SizeFor(body_size()); } in CodeSize()