Home
last modified time | relevance | path

Searched refs:gids (Results 1 – 16 of 16) sorted by relevance

/external/compiler-rt/test/msan/Linux/
Dgetresid.cc18 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/
DV_O_R_G_.py22 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.py370 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 …]
DC_O_L_R_.py25 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/
Dcffcmap.c46 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()
Dcffcmap.h41 FT_UShort* gids; /* up to 256 elements */ member
/external/freetype/src/cff/
Dcffcmap.c46 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()
Dcffcmap.h41 FT_UShort* gids; /* up to 256 elements */ member
/external/harfbuzz_ng/src/
Dhb-graphite2.cc308 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/
DREADME-2.035 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/
Drpc.py53 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/
Dsquashfs.txt39 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/
DCHANGES501 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.
DRELEASE-README26 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/
Dmsan_test.cc3490 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/
Dsubset.py1709 gids = [g for uc,g in l if u == uc and g is not None]
1710 s.glyphs.update(gids)