Searched defs:text_size (Results 1 - 11 of 11) sorted by relevance
/external/mesa3d/src/glsl/glcpp/ |
H A D | glcpp.c | 48 size_t text_size = 0; local 53 if (total_read + CHUNK + 1 > text_size) { 54 text_size = text_size ? text_size * 2 : CHUNK + 1; 55 text = reralloc_size (ctx, text, text_size);
|
/external/google-breakpad/src/common/linux/ |
H A D | file_id.cc | 122 size_t text_size; local 124 (const void**)&text_section, &text_size, NULL) || 125 text_size == 0) { 131 const uint8_t* ptr_end = ptr + std::min(text_size, static_cast<size_t>(4096));
|
/external/google-breakpad/src/common/solaris/ |
H A D | file_id.cc | 67 int *text_size) { 69 assert(text_size); 72 *text_size = 0; 124 *text_size = text_section->sh_size; 159 int text_size = 0; local 161 if (FindElfTextSection(fd, base, &text_section, &text_size)) { 164 MD5Update(&md5, (const unsigned char *)text_section, text_size); 65 FindElfTextSection(int fd, const void *elf_base, const void **text_start, int *text_size) argument
|
/external/ImageMagick/coders/ |
H A D | ps2.c | 448 text_size; 556 text_size=0; 559 text_size=(size_t) (MultilineCensus(value)*pointsize+12); 583 bounds.y2=(double) geometry.y+geometry.height+text_size; 690 (geometry.height+text_size)); 698 if ((double) (geometry.y+(geometry.height+text_size)-1) > bounds.y2) 699 bounds.y2=(double) geometry.y+(geometry.height+text_size)-1; 442 text_size; local
|
H A D | ps3.c | 871 text_size; 996 text_size=0; 999 text_size=(size_t) (MultilineCensus(value)*pointsize+12); 1026 bounds.y2=(double) geometry.y+scale.y+text_size; 1124 (double) (geometry.height+text_size)); 1144 if ((double) (geometry.y+scale.y+text_size) > bounds.y2) 1145 bounds.y2=(double) geometry.y+scale.y+text_size; 865 text_size; local
|
H A D | pdf.c | 1272 text_size, 1569 text_size=0; 1572 text_size=(size_t) (MultilineCensus(value)*pointsize+12); 1573 (void) text_size; 1263 text_size, local
|
H A D | ps.c | 1532 text_size; 1626 text_size=0; 1629 text_size=(size_t) (MultilineCensus(value)*pointsize+12); 1653 bounds.y2=(double) geometry.y+(geometry.height+text_size); 1844 (geometry.height+text_size)); 1852 if ((double) (geometry.y+(geometry.height+text_size)-1) > bounds.y2) 1853 bounds.y2=(double) geometry.y+(geometry.height+text_size)-1; 1524 text_size; local
|
/external/strace/ |
H A D | socketutils.c | 96 socklen_t addr_size, text_size; local 104 text_size = INET_ADDRSTRLEN; 108 text_size = INET6_ADDRSTRLEN; 114 char src_buf[text_size]; 117 src_buf, text_size)) 122 char dst_buf[text_size]; 125 dst_buf, text_size))
|
/external/protobuf/src/google/protobuf/io/ |
H A D | tokenizer.cc | 1030 const size_t text_size = text.size(); local 1031 if (text_size == 0) { 1041 const size_t new_len = text_size + output->size();
|
/external/autotest/client/tests/kvm/deps/ |
H A D | rss.cpp | 106 int text_size = 0; variable 161 if (!text_size) return; 174 text_size = 0; 196 if (text_size + len + 1 > sizeof(text_buffer)) 199 strcpy(text_buffer + text_size, str); 200 text_size += len;
|
/external/valgrind/coregrind/m_debuginfo/ |
H A D | priv_storage.h | 773 SizeT text_size; member in struct:_DebugInfo
|
Completed in 2418 milliseconds