/external/kernel-headers/original/uapi/linux/ |
fiemap.h | 33 __u32 fm_mapped_extents;/* number of extents that were mapped (out) */ 36 struct fiemap_extent fm_extents[0]; /* array of mapped extents (out) */ 43 #define FIEMAP_FLAG_CACHE 0x00000004 /* request caching of the extents */ 64 * support extents. Result
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xregion.h | 80 BOX extents; member in struct:_XRegion 98 * update region extents 100 #define EXTENTS(r,idRect){\ 101 if((r)->x1 < (idRect)->extents.x1)\ 102 (idRect)->extents.x1 = (r)->x1;\ 103 if((r)->y1 < (idRect)->extents.y1)\ 104 (idRect)->extents.y1 = (r)->y1;\ 105 if((r)->x2 > (idRect)->extents.x2)\ 106 (idRect)->extents.x2 = (r)->x2;\ 107 if((r)->y2 > (idRect)->extents.y2) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xregion.h | 79 BOX extents; member in struct:_XRegion 97 * update region extents 99 #define EXTENTS(r,idRect){\ 100 if((r)->x1 < (idRect)->extents.x1)\ 101 (idRect)->extents.x1 = (r)->x1;\ 102 if((r)->y1 < (idRect)->extents.y1)\ 103 (idRect)->extents.y1 = (r)->y1;\ 104 if((r)->x2 > (idRect)->extents.x2)\ 105 (idRect)->extents.x2 = (r)->x2;\ 106 if((r)->y2 > (idRect)->extents.y2) [all...] |
/external/bsdiff/ |
bspatch.1 | 37 .Op Ar old-extents new-extents 52 .Ar old-extents 54 .Ar new-extents 59 extents of the form
|
extents_file.cc | 16 // extents in the file, but sequential reads jump to the next extent in O(1). 21 const std::vector<ex_t>& extents) 22 : file_(std::move(file)), extents_(extents) { 23 acc_len_.reserve(extents.size()); 24 for (const ex_t& extent : extents) { 53 // We handle the corner case where |pos| is the size of all the extents by
|
/system/update_engine/payload_generator/ |
ab_generator.h | 63 // destination extents refer to. The blobs of the operations in |aops| should 71 // start block in their destination extents. Sets |aops| to a vector of the 78 // have only one dst extent. The src extents are split so the number of blocks 79 // in the src and dst extents are equal. 81 // src extents: [(1, 3), (5, 1), (7, 1)], dst extents: [(2, 2), (6, 3)] 83 // 1. src extents: [(1, 2)], dst extents: [(2, 2)] 84 // 2. src extents: [(3, 1),(5, 1),(7, 1)], dst extents: [(6, 3) [all...] |
graph_utils.cc | 40 const vector<Extent>& extents = local 41 graph[edge.first].out_edges.find(edge.second)->second.extents; 42 for (vector<Extent>::const_iterator it = extents.begin(); 43 it != extents.end(); ++it) { 61 AppendBlockToExtents(&edge_it->second.extents, block); 66 const vector<Extent>& extents) { 68 for (vector<Extent>::const_iterator it = extents.begin(), e = extents.end(); 85 if (it->second.extents.empty()) { 117 DumpExtents(it->second.extents, 6) [all...] |
graph_utils.h | 33 // Returns the number of blocks represented by all extents in the edge. 43 const std::vector<Extent>& extents);
|
inplace_generator_unittest.cc | 67 EdgeProperties EdgeWithReadDep(const vector<Extent>& extents) { 69 ret.extents = extents; 73 EdgeProperties EdgeWithWriteDep(const vector<Extent>& extents) { 75 ret.write_extents = extents; 181 vector<Extent> extents; local 182 AppendBlockToExtents(&extents, 3); 183 AppendBlockToExtents(&extents, 5); 184 AppendBlockToExtents(&extents, 7); 185 StoreExtents(extents, graph.back().aop.op.mutable_src_extents()) 204 vector<Extent> extents; local [all...] |
annotated_operation.cc | 29 // Output the list of extents as (start_block, num_blocks) in the passed output 32 const google::protobuf::RepeatedPtrField<Extent>& extents) { 33 for (const auto& extent : extents) {
|
ext2_filesystem.cc | 50 vector<Extent>* extents = static_cast<vector<Extent>*>(priv); local 51 AppendBlockToExtents(extents, *blocknr); 222 &file.extents); 281 AppendBlockToExtents(&inode_file.extents, block); 296 AppendBlockToExtents(&free_space.extents, block); 306 if (ino_file.second.extents.empty()) 311 ranges.AddExtents(file.extents); 312 file.extents = ranges.GetExtentsForBlockCount(ranges.blocks()); 334 vector<Extent> extents; 338 &extents); [all...] |
/external/harfbuzz_ng/util/ |
view-cairo.cc | 43 hb_font_extents_t extents; local 44 hb_font_get_extents_for_direction (font, direction, &extents); 46 double ascent = y_sign * scalbn ((double) extents.ascender, scale_bits); 47 double descent = y_sign * -scalbn ((double) extents.descender, scale_bits); 48 double font_height = y_sign * scalbn ((double) extents.ascender - extents.descender + extents.line_gap, scale_bits);
|
/system/update_engine/payload_consumer/ |
extent_writer.h | 30 // file descriptor at the extents given. 43 const std::vector<Extent>& extents, 61 // It writes the data directly into the extents. 69 const std::vector<Extent>& extents, 73 extents_ = extents; 103 const std::vector<Extent>& extents, 106 return underlying_extent_writer_->Init(fd, extents, block_size);
|
/external/e2fsprogs/lib/ext2fs/ |
fiemap.h | 31 __u32 fm_mapped_extents;/* number of extents that were mapped (out) */ 34 struct fiemap_extent fm_extents[0]; /* array of mapped extents (out) */ 65 * support extents. Result
|
/external/e2fsprogs/tests/f_bad_disconnected_inode/ |
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/skia/gm/ |
distantclip.cpp | 34 // We record a picture of huge vertical extents in which we clear the canvas to red, create 35 // a 'extents' by 'extents' round rect clip at a vertical offset of 'offset', then draw
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
fiemap.h | 33 __u32 fm_mapped_extents;/* number of extents that were mapped (out) */ 36 struct fiemap_extent fm_extents[0]; /* array of mapped extents (out) */ 63 * support extents. Result
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
fiemap.h | 33 __u32 fm_mapped_extents;/* number of extents that were mapped (out) */ 36 struct fiemap_extent fm_extents[0]; /* array of mapped extents (out) */ 63 * support extents. Result
|
/external/e2fsprogs/tests/f_desc_size_bad/ |
script | 9 $MKE2FS -F -o Linux -O 64bit,extents -N 32 -b 1024 -g 512 -E desc_size=128 $TMPFILE 2048 > $test_name.log 2>&1
|
/frameworks/base/core/jni/android/graphics/ |
HarfBuzzNGFaceSkia.cpp | 57 static void SkiaGetGlyphWidthAndExtents(SkPaint* paint, hb_codepoint_t codepoint, hb_position_t* width, hb_glyph_extents_t* extents) 72 if (extents) { 74 extents->x_bearing = SkScalarToHBFixed(skBounds.fLeft); 75 extents->y_bearing = SkScalarToHBFixed(-skBounds.fTop); 76 extents->width = SkScalarToHBFixed(skBounds.width()); 77 extents->height = SkScalarToHBFixed(-skBounds.height()); 114 static hb_bool_t harfbuzzGetGlyphExtents(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, hb_glyph_extents_t* extents, void* userData) 118 SkiaGetGlyphWidthAndExtents(hbFontData->m_paint, glyph, 0, extents);
|
/external/harfbuzz_ng/src/ |
hb-ot-font.cc | 170 hb_glyph_extents_t *extents) const 191 return true; /* Empty glyph; zero extents. */ 195 extents->x_bearing = MIN (glyph_header.xMin, glyph_header.xMax); 196 extents->y_bearing = MAX (glyph_header.yMin, glyph_header.yMax); 197 extents->width = MAX (glyph_header.xMin, glyph_header.xMax) - extents->x_bearing; 198 extents->height = MIN (glyph_header.yMin, glyph_header.yMax) - extents->y_bearing; 388 hb_glyph_extents_t *extents, 392 bool ret = ot_font->glyf.get_extents (glyph, extents); [all...] |
/development/ndk/platforms/android-3/include/linux/ |
efs_fs_i.h | 58 efs_extent extents[EFS_DIRECTEXTENTS]; member in struct:efs_inode_info
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/ |
efs_fs_i.h | 58 efs_extent extents[EFS_DIRECTEXTENTS]; member in struct:efs_inode_info
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/ |
efs_fs_i.h | 58 efs_extent extents[EFS_DIRECTEXTENTS]; member in struct:efs_inode_info
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/ |
efs_fs_i.h | 58 efs_extent extents[EFS_DIRECTEXTENTS]; member in struct:efs_inode_info
|