HomeSort by relevance Sort by last modified time
    Searched refs:text_size (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/ui/accessibility/
ax_text_utils.cc 17 size_t text_size = text.size(); local
18 DCHECK(start_offset <= text_size);
21 if (direction == FORWARDS_DIRECTION && start_offset < text_size)
32 return text_size;
47 if (result >= text_size)
48 return text_size;
71 (pos == text_size - 1 || IsWhitespace(text[pos + 1]))) {
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
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/mesa3d/src/glsl/glcpp/
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);
  /hardware/intel/img/psb_video/fw/topazhp/
fwinfo.c 47 unsigned int text_size; member in struct:topaz_fw_info_item_s
80 unsigned int text_size; member in struct:msvdx_fw
160 printf("topaz: text_size : %d\n", (topaz_fw_table[iter].header.text_size >> 2));
164 fseek(fp, topaz_fw_table[iter].header.text_size + topaz_fw_table[iter].header.data_size, SEEK_CUR);
168 for (i = 0; i < (topaz_fw_table[iter].header.text_size >> 2); i++) {
208 printf("msvdx slice switch firmware: text_size : %d\n", fw.text_size);
212 lseek = ((sizeof(fw) + (fw.text_size + fw.data_size) * 4 + 0xfff) & ~0xfff);
219 printf("msvdx frame switch firmware: text_size : %d\n", fw.text_size)
    [all...]
topazhp_bin.c 100 unsigned int text_size; member in struct:topaz_fw_info_item_s
174 sec_t[iter].text_size_bytes = tng_fw_table[iter].header.text_size * 4;
189 sec_t[iter].text_size_bytes = tng_fw_table[iter].header.text_size * 4;
203 size = tng_fw_table[iter].header.text_size * 4;
286 size = tng_fw_table[iter].header.text_size * 4;
317 topaz_fw_table[iter].header.text_size *= 4;
323 size = topaz_fw_table[iter].header.text_size;
369 topaz_fw_table[i].header.text_size = 6883;
  /hardware/intel/img/psb_video/fw/topazsc/
fwinfo.c 47 unsigned int text_size; member in struct:topaz_fw_info_item_s
80 unsigned int text_size; member in struct:msvdx_fw
160 printf("topaz: text_size : %d\n", (topaz_fw_table[iter].header.text_size >> 2));
164 fseek(fp, topaz_fw_table[iter].header.text_size + topaz_fw_table[iter].header.data_size, SEEK_CUR);
168 for (i = 0; i < (topaz_fw_table[iter].header.text_size >> 2); i++) {
208 printf("msvdx slice switch firmware: text_size : %d\n", fw.text_size);
212 lseek = ((sizeof(fw) + (fw.text_size + fw.data_size) * 4 + 0xfff) & ~0xfff);
219 printf("msvdx frame switch firmware: text_size : %d\n", fw.text_size)
    [all...]
topaz_bin.c 50 unsigned int text_size; member in struct:topaz_fw_info_item_s
89 * { ver, codec, text_size, data_size, date_location }
230 topaz_fw_table[iter].header.text_size *= 4;
236 size = topaz_fw_table[iter].header.text_size;
topazsc_bin.c 89 unsigned int text_size; member in struct:topaz_fw_info_item_s
139 * { ver, codec, text_size, data_size, date_location }
179 topaz_fw_table[iter].header.text_size *= 4;
185 size = topaz_fw_table[iter].header.text_size;
  /hardware/intel/img/psb_video/fw/msvdx/
msvdx_bin.c 47 unsigned int text_size; member in struct:msvdx_fw
73 fw.text_size = fw_DE3.uiTextSize / 4;
84 for (i = 0; i < fw.text_size; i++) {
116 for (i = 0; i < fw.text_size; i++) {
151 for (i = 0; i < fw.text_size; i++) {
193 for (i = 0; i < fw.text_size; i++) {
230 for (i = 0; i < fw.text_size; i++) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
svghelper.c 133 double text_size; local
140 text_size = (time2pixels(end)-time2pixels(start));
142 text_size = text_size/2;
143 if (text_size > 1.25)
144 text_size = 1.25;
145 text_size = round_text_size(text_size);
147 if (text_size > MIN_TEXT_SIZE)
149 time2pixels(start), Yslot * SLOT_MULT + SLOT_HEIGHT - 1, text_size, cpu + 1)
    [all...]
  /external/chromium_org/ui/views/controls/
label.cc 242 gfx::Size text_size(GetTextSize());
243 if ((!visible() && collapse_when_hidden_) || text_size.IsEmpty())
249 size.SetToMin(text_size); // The actual text may be shorter than an ellipsis.
412 gfx::Size text_size(GetTextSize());
413 text_size.set_width(std::min(available.width(), text_size.width()));
421 origin.Offset((available.width() + 1 - text_size.width()) / 2, 0);
424 origin.set_x(available.right() - text_size.width());
431 text_size.set_height(available.height());
433 origin.Offset(0, std::max(0, (available.height() - text_size.height())) / 2)
535 const gfx::Size text_size = GetTextSize(); local
    [all...]
  /external/chromium_org/third_party/libpng/
pngpread.c 1240 png_size_t text_size; local
1248 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
1340 png_size_t text_size; local
1348 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
1358 png_size_t text_size, key_size; local
1540 png_size_t text_size; local
1548 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
    [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngpread.c 1240 png_size_t text_size; local
1248 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
1340 png_size_t text_size; local
1348 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
1358 png_size_t text_size, key_size; local
1540 png_size_t text_size; local
1548 png_crc_read(png_ptr, (png_bytep)png_ptr->current_text_ptr, text_size); local
    [all...]
  /external/chromium_org/ui/gfx/
render_text_mac.h 61 SkScalar text_size; member in struct:gfx::RenderTextMac::TextRun
render_text_mac.cc 48 Font font(runs_[i].font_name, runs_[i].text_size);
170 renderer.SetTextSize(run.text_size);
186 text_size(0),
316 run->text_size = CTFontGetSize(ct_font);
render_text.cc 275 const SkScalar text_size = paint_.getTextSize(); local
276 r.fTop = SkScalarMulAdd(text_size, kUnderlineOffset, y);
277 r.fBottom = r.fTop + SkScalarMul(text_size, kLineThickness);
283 const SkScalar text_size = paint_.getTextSize(); local
284 const SkScalar height = SkScalarMul(text_size, kLineThickness);
285 const SkScalar offset = SkScalarMulAdd(text_size, kStrikeThroughOffset, y);
308 const SkScalar text_size = paint_.getTextSize(); local
309 const SkScalar offset = SkScalarMul(text_size, kDiagonalStrikeMarginOffset);
311 SkScalarCeilToInt(SkScalarMul(text_size, kLineThickness) * 2);
312 const int height = SkScalarCeilToInt(text_size - offset)
    [all...]
  /external/chromium_org/ash/system/chromeos/
tray_caps_lock.cc 101 const gfx::Size text_size = text_label_->size(); variable
102 text_label_->SetSize(gfx::Size(text_size.width() + new_x - old_x,
103 text_size.height()));
  /external/libunwind/src/
os-hpux.c 84 map->end = cur_map->start + lmd.text_size;
  /art/compiler/
elf_writer_quick.h 218 Elf32_Word text_size,
225 text_builder_(".text", text_size, text_relative_offset, SHT_PROGBITS,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 1014 const size_t text_size = text.size(); local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 316 di->text_avma + di->text_size,
354 && curr->text_size > 0
356 || curr->text_avma + curr->text_size - 1 < start)) {
    [all...]
readelf.c 323 && di->text_size > 0
325 && sym_svma < text_svma + di->text_size) {
602 && di->text_size > 0
604 || *sym_avma_out >= di->text_avma + di->text_size);
658 di->text_avma + di->text_size);
    [all...]
readmacho.c 336 || sym_addr >= di->text_avma+di->text_size) {
362 di->text_avma+di->text_size - sym_addr;
841 di->text_size = seg.vmsize;
    [all...]
readpdb.c     [all...]
  /external/chromium_org/win8/metro_driver/ime/
text_store.h 166 ULONG text_size,

Completed in 1694 milliseconds

1 2