/external/compiler-rt/test/msan/Linux/ |
D | getresid.cc | 18 gid_t gids[6]; in main() local 19 assert(0 == __msan_test_shadow(gids, 6 * sizeof(gid_t))); in main() 20 assert(0 == getresgid(&gids[0], &gids[2], &gids[4])); in main() 23 __msan_test_shadow(gids + 2 * i, 2 * sizeof(gid_t))); in main()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | V_O_R_G_.py | 22 gids = [] 27 gids.append(gid) 33 names = map(operator.getitem, [glyphOrder]*self.numVertOriginYMetrics, gids) 36 names = map(getGlyphName, gids ) 47 gids = map(operator.getitem, [nameMap]*lenRecords, names) 50 gids = map(operator.getitem, [nameMap]*lenRecords, names) 51 vOriginTable = list(zip(gids, vorgs))
|
D | _c_m_a_p.py | 370 gids = list(cmap.values()) 372 lenCmap = len(gids) 374 names = list(map(operator.getitem, [glyphOrder]*lenCmap, gids )) 377 names = list(map(getGlyphName, gids )) 393 gids = list(map(operator.getitem, [nameMap]*lenCharCodes, names)) 397 gids = list(map(operator.getitem, [nameMap]*lenCharCodes, names)) 400 gids = [] 413 gids.append(gid) 439 items = zip(charCodes, gids) 667 gids = [] [all …]
|
D | C_O_L_R_.py | 25 gids = [] 31 gids.append(gid) 47 names = list(map(operator.getitem, [glyphOrder]*numBaseGlyphRecords, gids)) 50 names = list(map(getGlyphName, gids ))
|
/external/pdfium/third_party/freetype/src/cff/ |
D | cffcmap.c | 46 cmap->gids = encoding->codes; in cff_cmap_encoding_init() 55 cmap->gids = NULL; in cff_cmap_encoding_done() 67 result = cmap->gids[char_code]; in cff_cmap_encoding_char_index() 93 result = cmap->gids[code]; in cff_cmap_encoding_char_next()
|
D | cffcmap.h | 41 FT_UShort* gids; /* up to 256 elements */ member
|
/external/freetype/src/cff/ |
D | cffcmap.c | 46 cmap->gids = encoding->codes; in cff_cmap_encoding_init() 55 cmap->gids = NULL; in cff_cmap_encoding_done() 67 result = cmap->gids[char_code]; in cff_cmap_encoding_char_index() 93 result = cmap->gids[code]; in cff_cmap_encoding_char_next()
|
D | cffcmap.h | 41 FT_UShort* gids; /* up to 256 elements */ member
|
/external/harfbuzz_ng/src/ |
D | hb-graphite2.cc | 308 ALLOCATE_ARRAY (hb_codepoint_t, gids, glyph_count); in _hb_graphite2_shape() 314 hb_codepoint_t *pg = gids; in _hb_graphite2_shape() 369 info->codepoint = gids[clusters[i].base_glyph + j]; in _hb_graphite2_shape()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-2.0 | 35 options. These allow the uids/gids of files in the generated 36 filesystem to be specified, overriding the uids/gids in the 90 uids/gids in the generated Squashfs filesystem to be root.
|
/external/python/cpython2/Demo/rpc/ |
D | rpc.py | 53 def pack_auth_unix(self, stamp, machinename, uid, gid, gids): argument 58 self.pack_uint(len(gids)) 59 for i in gids:
|
/external/squashfs-tools/kernel/Documentation/filesystems/ |
D | squashfs.txt | 39 32-bit uids/gids: yes no 176 converted to 32-bit uids/gids using an id look up table. This table is
|
/external/squashfs-tools/ |
D | CHANGES | 501 options. These allow the uids/gids of files in the generated 502 filesystem to be specified, overriding the uids/gids in the 508 filesystems in certain cases file gids were corrupted.
|
D | RELEASE-README | 26 2. Squashfs stores full uid/gids (32 bits), and file creation time. 125 -force-gid gid set all file gids to gid 401 file uids/gids in the generated Squashfs filesystem to be root. This allows 965 converted to 32-bit uids/gids using an id look up table. This table is
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 3490 gid_t *gids = new gid_t[n]; in TEST() local 3491 int res = getgroups(n, gids); in TEST() 3494 EXPECT_NOT_POISONED(gids[i]); in TEST()
|
/external/fonttools/Lib/fontTools/ |
D | subset.py | 1709 gids = [g for uc,g in l if u == uc and g is not None] 1710 s.glyphs.update(gids)
|