/external/fio/ |
D | cairo_text_helpers.c | 13 cairo_text_extents_t extents; in draw_aligned_text() local 33 cairo_text_extents(cr, text, &extents); in draw_aligned_text() 34 x = x + direction * (factor * extents.width + extents.x_bearing); in draw_aligned_text() 35 y = y - (extents.height / 2 + extents.y_bearing); in draw_aligned_text() 66 cairo_text_extents_t extents; in draw_vertical_centered_text() local 71 cairo_text_extents(cr, text, &extents); in draw_vertical_centered_text() 74 y = y + (extents.width / 2.0 + extents.x_bearing); in draw_vertical_centered_text() 75 x = x - (extents.height / 2.0 + extents.y_bearing); in draw_vertical_centered_text()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
D | ItemLocationBox.java | 158 …nt itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) { in createItem() argument 159 return new Item(itemId, constructionMethod, dataReferenceIndex, baseOffset, extents); in createItem() 171 public List<Extent> extents = new LinkedList<Extent>(); field in ItemLocationBox.Item 191 extents.add(new Extent(in)); in Item() 195 …nt itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) { in Item() argument 200 this.extents = extents; in Item() 215 for (Extent extent : extents) { in getSize() 237 IsoTypeWriter.writeUInt16(bb, extents.size()); in getContent() 239 for (Extent extent : extents) { in getContent() 255 … if (extents != null ? !extents.equals(item.extents) : item.extents != null) return false; in equals() [all …]
|
/external/jmonkeyengine/engine/src/bullet-native/ |
D | com_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp | 51 btVector3 extents = btVector3(); in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape() local 52 jmeBulletUtil::convert(env, halfExtents, &extents); in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape() 56 shape = new btCylinderShapeX(extents); in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape() 59 shape = new btCylinderShape(extents); in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape() 62 shape = new btCylinderShapeZ(extents); in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape()
|
D | com_jme3_bullet_collision_shapes_BoxCollisionShape.cpp | 51 btVector3 extents = btVector3(); in Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape() local 52 jmeBulletUtil::convert(env, halfExtents, &extents); in Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape() 53 btBoxShape* shape = new btBoxShape(extents); in Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape()
|
/external/harfbuzz_ng/src/ |
D | hb-font.cc | 154 hb_glyph_extents_t *extents, in hb_font_get_glyph_extents_nil() argument 158 hb_bool_t ret = font->parent->get_glyph_extents (glyph, extents); in hb_font_get_glyph_extents_nil() 160 font->parent_scale_position (&extents->x_bearing, &extents->y_bearing); in hb_font_get_glyph_extents_nil() 161 font->parent_scale_distance (&extents->width, &extents->height); in hb_font_get_glyph_extents_nil() 166 memset (extents, 0, sizeof (*extents)); in hb_font_get_glyph_extents_nil() 569 hb_glyph_extents_t *extents) in hb_font_get_glyph_extents() argument 571 return font->get_glyph_extents (glyph, extents); in hb_font_get_glyph_extents() 764 hb_glyph_extents_t *extents) in hb_font_get_glyph_extents_for_origin() argument 766 return font->get_glyph_extents_for_origin (glyph, direction, extents); in hb_font_get_glyph_extents_for_origin()
|
D | hb-font-private.hh | 209 hb_glyph_extents_t *extents) in get_glyph_extents() 211 memset (extents, 0, sizeof (*extents)); in get_glyph_extents() 214 extents, in get_glyph_extents() 340 hb_glyph_extents_t *extents) in get_glyph_extents_for_origin() 342 hb_bool_t ret = get_glyph_extents (glyph, extents); in get_glyph_extents_for_origin() 345 … subtract_glyph_origin_for_direction (glyph, direction, &extents->x_bearing, &extents->y_bearing); in get_glyph_extents_for_origin()
|
D | hb-ft.cc | 192 hb_glyph_extents_t *extents, in hb_ft_get_glyph_extents() argument 201 extents->x_bearing = ft_face->glyph->metrics.horiBearingX; in hb_ft_get_glyph_extents() 202 extents->y_bearing = ft_face->glyph->metrics.horiBearingY; in hb_ft_get_glyph_extents() 203 extents->width = ft_face->glyph->metrics.width; in hb_ft_get_glyph_extents() 204 extents->height = -ft_face->glyph->metrics.height; in hb_ft_get_glyph_extents()
|
D | hb-font.h | 122 hb_glyph_extents_t *extents, 352 hb_glyph_extents_t *extents); 402 hb_glyph_extents_t *extents);
|
/external/harfbuzz_ng/test/api/ |
D | test-font.c | 117 hb_glyph_extents_t extents; in _test_font_nil_funcs() local 127 extents.x_bearing = extents.y_bearing = 13; in _test_font_nil_funcs() 128 extents.width = extents.height = 15; in _test_font_nil_funcs() 129 hb_font_get_glyph_extents (font, 17, &extents); in _test_font_nil_funcs() 130 g_assert_cmpint (extents.x_bearing, ==, 0); in _test_font_nil_funcs() 131 g_assert_cmpint (extents.y_bearing, ==, 0); in _test_font_nil_funcs() 132 g_assert_cmpint (extents.width, ==, 0); in _test_font_nil_funcs() 133 g_assert_cmpint (extents.height, ==, 0); in _test_font_nil_funcs()
|
/external/e2fsprogs/tests/f_uninit_ext_past_eof2/ |
D | name | 1 fallocated extents after nonzero i_size and total extents > 4
|
/external/e2fsprogs/tests/f_extents2/ |
D | name | 1 multiply claimed blocks in extents and other illegal extents
|
D | expect.1 | 2 Inode 12 has out of order extents 24 Inode 18 has out of order extents
|
/external/e2fsprogs/tests/f_bad_disconnected_inode/ |
D | expect.1 | 2 Inode 1 has EXTENTS_FL flag set on filesystem without extents support. 5 Inode 15 has EXTENTS_FL flag set on filesystem without extents support. 8 Inode 16 has EXTENTS_FL flag set on filesystem without extents support.
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
D | xorg_dri2.c | 361 BoxPtr extents = REGION_EXTENTS(pScreen, pRegion); in dri2_copy_region() local 363 if (extents->x1 == 0 && extents->y1 == 0 && in dri2_copy_region() 364 extents->x2 == pDraw->width && extents->y2 == pDraw->height) { in dri2_copy_region()
|
/external/e2fsprogs/tests/f_extents/ |
D | name | 1 basic extents support
|
/external/e2fsprogs/tests/f_uninit_ext_past_eof/ |
D | name | 1 fallocated extents after i_size
|
/external/e2fsprogs/tests/f_fast_symlink_extents/ |
D | name | 1 fast symlink with extents flag set
|
/external/valgrind/docs/internals/ |
D | arm_thumb_notes_gdbserver.txt | 43 * Thumb bit in extents 46 At least at this moment (r2155/r11786), the extents for ARM/thumb blocks 48 a good thing: extents should preferrably reference the real address range of 85 Also, it would oblige to keep the thumb bit in the extents, which
|
/external/e2fsprogs/debugfs/ |
D | ro_debug_cmds.ct | 42 request do_dump_extents, "Dump extents information ", 43 dump_extents, extents, ex;
|
D | debug_cmds.ct | 49 request do_dump_extents, "Dump extents information ", 50 dump_extents, extents, ex;
|
/external/e2fsprogs/tests/m_extent_journal/ |
D | script | 3 MKE2FS_OPTS="-O extents -j"
|
/external/e2fsprogs/tests/m_desc_size_128/ |
D | script | 3 MKE2FS_OPTS="-b 1024 -O 64bit,extents -g 1024 -N 8192 -E desc_size=128"
|
/external/e2fsprogs/tests/f_desc_size_bad/ |
D | script | 9 $MKE2FS -F -o Linux -O 64bit,extents -N 32 -b 1024 -g 512 -E desc_size=128 $TMPFILE 2048 > $test_na…
|
/external/llvm/test/CodeGen/PowerPC/ |
D | 2007-11-04-CoalescerCrash.ll | 98 …%extents.0.reg2mem.0 = phi %struct.HDescriptor* [ null, %cond_next942 ], [ %tmp977978, %cond_next9… 105 %tmp974975 = bitcast %struct.HDescriptor* %extents.0.reg2mem.0 to i8* ; <i8*> [#uses=1]
|
/external/e2fsprogs/lib/blkid/ |
D | probe.c | 1187 struct hfsplus_extent extents[HFSPLUS_EXTENT_COUNT]; in probe_hfsplus() local 1246 memcpy(extents, hfsplus->cat_file.extents, sizeof(extents)); in probe_hfsplus() 1247 cat_block = blkid_be32(extents[0].start_block); in probe_hfsplus() 1266 ext_block_start = blkid_be32(extents[ext].start_block); in probe_hfsplus() 1267 ext_block_count = blkid_be32(extents[ext].block_count); in probe_hfsplus()
|