/external/e2fsprogs/tests/f_journal/ |
D | expect.1 | 2 Clearing orphaned inode 37 (uid=0, gid=0, mode=0100600, size=4096) 3 Clearing orphaned inode 90 (uid=0, gid=0, mode=040700, size=1024) 4 Clearing orphaned inode 67 (uid=0, gid=0, mode=0100600, size=4096) 5 Clearing orphaned inode 50 (uid=0, gid=0, mode=0100600, size=4096) 6 Clearing orphaned inode 57 (uid=0, gid=0, mode=040700, size=1024) 7 Clearing orphaned inode 80 (uid=0, gid=0, mode=040700, size=1024) 8 Clearing orphaned inode 45 (uid=0, gid=0, mode=040700, size=1024) 9 Clearing orphaned inode 71 (uid=0, gid=0, mode=0100600, size=4096) 10 Clearing orphaned inode 86 (uid=0, gid=0, mode=040700, size=1024) 11 Clearing orphaned inode 83 (uid=0, gid=0, mode=040700, size=1024) [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_perfmon.c | 50 int gid, cid; in init_perf_monitor() local 55 for (gid = 0; gid < ctx->PerfMonitor.NumGroups; gid++) { in init_perf_monitor() 56 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[gid]; in init_perf_monitor() 57 const struct st_perf_monitor_group *stg = &st->perfmon[gid]; in init_perf_monitor() 59 if (m->ActiveGroups[gid] > g->MaxActiveCounters) { in init_perf_monitor() 68 num_active_counters += m->ActiveGroups[gid]; in init_perf_monitor() 70 max_batch_counters += m->ActiveGroups[gid]; in init_perf_monitor() 88 for (gid = 0; gid < ctx->PerfMonitor.NumGroups; gid++) { in init_perf_monitor() 89 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[gid]; in init_perf_monitor() 90 const struct st_perf_monitor_group *stg = &st->perfmon[gid]; in init_perf_monitor() [all …]
|
/external/deqp-deps/amber/tests/cases/ |
D | glsl_read_and_write_image3d_rgba32i.amber | 20 uvec3 gid = gl_GlobalInvocationID; 21 ivec3 coord = ivec3(gid.x, gid.y, gid.z); 22 ivec4 data = ivec4(gid.x + 1, gid.y + 1, gid.z + 1, 0); 35 uvec3 gid = gl_GlobalInvocationID; 36 ivec3 coord = ivec3(gid.x, gid.y, gid.z); 37 uint linear = 4 * gid.z + 2 * gid.y + gid.x;
|
/external/strace/tests/ |
D | xchownx.c | 97 #define PAIR(val) { val, gid }, { uid, val } 106 unsigned int gid = GETEGID; in main() local 107 CHECK_OVERFLOWUID(gid); in main() 110 const long uid, gid; in main() member 112 { uid, gid }, in main() 113 { (unsigned long) 0xffffffff00000000ULL | uid, gid }, in main() 114 { uid, (unsigned long) 0xffffffff00000000ULL | gid }, in main() 117 { 0xffff0000U | uid, gid }, in main() 118 { uid, 0xffff0000U | gid }, in main() 136 const unsigned int gnum = ugid2int(tests[i].gid); in main() [all …]
|
/external/strace/tests-m32/ |
D | xchownx.c | 97 #define PAIR(val) { val, gid }, { uid, val } 106 unsigned int gid = GETEGID; in main() local 107 CHECK_OVERFLOWUID(gid); in main() 110 const long uid, gid; in main() member 112 { uid, gid }, in main() 113 { (unsigned long) 0xffffffff00000000ULL | uid, gid }, in main() 114 { uid, (unsigned long) 0xffffffff00000000ULL | gid }, in main() 117 { 0xffff0000U | uid, gid }, in main() 118 { uid, 0xffff0000U | gid }, in main() 136 const unsigned int gnum = ugid2int(tests[i].gid); in main() [all …]
|
/external/strace/tests-mx32/ |
D | xchownx.c | 97 #define PAIR(val) { val, gid }, { uid, val } 106 unsigned int gid = GETEGID; in main() local 107 CHECK_OVERFLOWUID(gid); in main() 110 const long uid, gid; in main() member 112 { uid, gid }, in main() 113 { (unsigned long) 0xffffffff00000000ULL | uid, gid }, in main() 114 { uid, (unsigned long) 0xffffffff00000000ULL | gid }, in main() 117 { 0xffff0000U | uid, gid }, in main() 118 { uid, 0xffff0000U | gid }, in main() 136 const unsigned int gnum = ugid2int(tests[i].gid); in main() [all …]
|
/external/skia/src/pdf/ |
D | SkPDFGlyphUse.h | 22 void set(SkGlyphID gid) { fBitSet.set(this->toCode(gid)); } in set() argument 23 bool has(SkGlyphID gid) const { return fBitSet.test(this->toCode(gid)); } in has() argument 39 uint16_t toCode(SkGlyphID gid) const { in toCode() argument 40 if (gid == 0 || fFirstNonZero == 1) { in toCode() 41 return gid; in toCode() 43 SkASSERT(gid >= fFirstNonZero && gid <= fLastGlyph); in toCode() 44 return gid - fFirstNonZero + 1; in toCode()
|
D | SkPDFFont.h | 61 bool hasGlyph(SkGlyphID gid) { in hasGlyph() argument 62 return (gid >= this->firstGlyphID() && gid <= this->lastGlyphID()) || gid == 0; in hasGlyph() 66 SkGlyphID glyphToPDFFontEncoding(SkGlyphID gid) const { in glyphToPDFFontEncoding() argument 67 if (this->multiByteGlyphs() || gid == 0) { in glyphToPDFFontEncoding() 68 return gid; in glyphToPDFFontEncoding() 70 SkASSERT(gid >= this->firstGlyphID() && gid <= this->lastGlyphID()); in glyphToPDFFontEncoding() 72 return gid - this->firstGlyphID() + 1; in glyphToPDFFontEncoding()
|
/external/harfbuzz_ng/src/ |
D | hb-ot-var-hvar-table.hh | 60 …hb_codepoint_t gid = (hb_codepoint_t) hb_min (index_map.get_map_count (), plan->num_output_glyphs … in init() local 67 for (; gid > 0; gid--) in init() 70 if (!plan->old_gid_for_new_gid (gid - 1, &old_gid)) in init() 82 last_gid = gid; in init() 87 last_gid = gid; in init() 92 for (gid = 0; gid < map_count; gid++) in init() 95 if (plan->old_gid_for_new_gid (gid, &old_gid)) in init() 129 for (hb_codepoint_t gid = 0; gid < output_map.length; gid++) in remap() local 132 if (plan->old_gid_for_new_gid (gid, &old_gid)) in remap() 136 output_map[gid] = (outer_map[outer] << 16) | (inner_maps[outer][v & 0xFFFF]); in remap() [all …]
|
D | test-ot-glyphname.cc | 53 for (hb_codepoint_t gid = 0; gid < num_glyphs; gid++) in main() local 57 if (hb_font_get_glyph_name (font, gid, buf, buf_size)) in main() 62 if (gid == gid_inv) in main() 64 printf ("%u <-> %s\n", gid, buf); in main() 68 printf ("%u -> %s -> %u\n", gid, buf, gid_inv); in main() 74 printf ("%u -> %s -> ?\n", gid, buf); in main() 80 printf ("%u -> ?\n", gid); in main()
|
D | hb-subset-plan.cc | 53 hb_codepoint_t gid, in _add_cff_seac_components() argument 57 if (cff.get_seac_components (gid, &base_gid, &accent_gid)) in _add_cff_seac_components() 426 for (hb_codepoint_t gid : *glyphs_colred) in _colr_closure() 427 colr.closure_glyphs (gid, &glyphset_colrv0); in _colr_closure() 478 hb_codepoint_t gid; in _populate_unicodes_to_retain() local 479 if (!cmap.get_nominal_glyph (cp, &gid)) in _populate_unicodes_to_retain() 485 plan->codepoint_to_glyph->set (cp, gid); in _populate_unicodes_to_retain() 486 plan->unicode_to_new_gid_list.push (hb_pair (cp, gid)); in _populate_unicodes_to_retain() 495 hb_codepoint_t gid = unicode_to_gid->get (cp); in _populate_unicodes_to_retain() local 496 if (gid == HB_MAP_VALUE_INVALID) in _populate_unicodes_to_retain() [all …]
|
/external/harfbuzz_ng/src/OT/glyf/ |
D | glyf.hh | 185 bool get_points (hb_font_t *font, hb_codepoint_t gid, T consumer) const in get_points() 187 if (gid >= num_glyphs) return false; in get_points() 196 …if (unlikely (!glyph_for_gid (gid).get_points (font, *this, all_points, nullptr, true, true, phant… in get_points() 288 get_advance_with_var_unscaled (hb_font_t *font, hb_codepoint_t gid, bool is_vertical) const in get_advance_with_var_unscaled() 290 if (unlikely (gid >= num_glyphs)) return 0; in get_advance_with_var_unscaled() 296 success = get_points (font, gid, points_aggregator_t (font, nullptr, phantoms, false)); in get_advance_with_var_unscaled() 301 is_vertical ? vmtx->get_advance_without_var_unscaled (gid) : in get_advance_with_var_unscaled() 303 hmtx->get_advance_without_var_unscaled (gid); in get_advance_with_var_unscaled() 311 …bool get_leading_bearing_with_var_unscaled (hb_font_t *font, hb_codepoint_t gid, bool is_vertical,… in get_leading_bearing_with_var_unscaled() 313 if (unlikely (gid >= num_glyphs)) return false; in get_leading_bearing_with_var_unscaled() [all …]
|
/external/iptables/extensions/ |
D | libxt_owner.t | 5 -m owner --gid-owner root;-m owner --gid-owner 0;OK 6 -m owner --gid-owner 0-10;=;OK 7 -m owner --uid-owner root --gid-owner root;-m owner --uid-owner 0 --gid-owner 0;OK 8 -m owner --uid-owner 0-10 --gid-owner 0-10;=;OK 11 -m owner --gid-owner 0-10 --suppl-groups;=;OK 12 -m owner --suppl-groups --gid-owner 0-10;;FAIL 13 -m owner --gid-owner 0-10 ! --suppl-groups;;FAIL
|
/external/rust/crates/tokio/src/net/unix/ |
D | ucred.rs | 11 gid: unix::gid_t, field 21 pub fn gid(&self) -> unix::gid_t { in gid() method 22 self.gid in gid() 70 gid: 0, in get_peer_cred() 91 gid: ucred.gid as unix::gid_t, in get_peer_cred() 133 gid: unpcbid.unp_egid as unix::gid_t, in get_peer_cred() 157 let mut gid = MaybeUninit::uninit(); in get_peer_cred() localVariable 159 let ret = getpeereid(raw_fd, uid.as_mut_ptr(), gid.as_mut_ptr()); in get_peer_cred() 164 gid: gid.assume_init() as unix::gid_t, in get_peer_cred() 189 let mut gid = MaybeUninit::uninit(); in get_peer_cred() localVariable [all …]
|
/external/ltp/testcases/kernel/syscalls/setfsgid/ |
D | setfsgid03.c | 49 gid_t gid; in main() local 58 gid = 1; in main() 59 while (!getgrgid(gid)) in main() 60 gid++; in main() 62 GID16_CHECK(gid, setfsgid, cleanup); in main() 64 TEST(SETFSGID(cleanup, gid)); in main() 72 if (TEST_RETURN == gid) { in main() 75 TEST_RETURN, gid); in main()
|
D | setfsgid02.c | 23 static gid_t gid; variable 32 GID16_CHECK(gid, setfsgid); in run() 45 TEST(SETFSGID(gid)); in run() 52 pre_gid = gid; in run() 53 gid++; in run() 65 gid = 1; in setup()
|
/external/ltp/testcases/kernel/syscalls/setregid/ |
D | setregid01.c | 27 static gid_t gid, egid; variable 37 {&gid, &neg_one, "Change real to real gid" }, 38 {&neg_one, &gid, "Change effective to real gid" }, 39 {&gid, &gid, "Change real and effective both gids to current real gid" } 51 gid = getgid(); in setup() 52 GID16_CHECK(gid, setregid); in setup()
|
/external/toybox/toys/pending/ |
D | groupadd.c | 30 long gid; in GLOBALS() argument 43 if (TT.gid > INT_MAX) error_exit("gid should be less than '%d' ", INT_MAX); 44 if (getgrgid(TT.gid)) error_exit("group '%ld' is in use", TT.gid); 46 if (FLAG(S)) TT.gid = CFG_TOYBOX_UID_SYS; 47 else TT.gid = CFG_TOYBOX_UID_USR; 49 while (getgrgid(TT.gid)) TT.gid++; 52 entry = xmprintf("%s:%s:%ld:", *toys.optargs, "x", TT.gid);
|
/external/ltp/testcases/kernel/syscalls/ipc/msgctl/ |
D | msgctl01.c | 22 static gid_t gid; variable 91 if (buf.msg_perm.gid == gid) { in verify_msgctl() 92 tst_res(TPASS, "msg_perm.gid = %u", (unsigned)gid); in verify_msgctl() 95 (unsigned)buf.msg_perm.gid, (unsigned)gid); in verify_msgctl() 105 if (buf.msg_perm.cgid == gid) { in verify_msgctl() 106 tst_res(TPASS, "msg_perm.cgid = %u", (unsigned)gid); in verify_msgctl() 109 (unsigned)buf.msg_perm.cgid, (unsigned)gid); in verify_msgctl() 128 gid = getegid(); in setup()
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_distributed_transactions.py | 68 gid = "%%%dd" %db.DB_GID_SIZE 69 gid = adapt(gid %i) 70 self.db.put(i, gid, txn=txn, flags=db.DB_APPEND) 71 txns.add(gid) 72 txn.prepare(gid) 81 for gid,txn in recovered_txns : 82 self.assertIn(gid, txns) 95 for gid,txn in recovered_txns : 97 committed_txns.add(gid) 103 discard_txns.add(gid) [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
D | fd2_query.c | 65 uint8_t gid; /* group-id */ member 90 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid]; in perfcntr_resume() 91 unsigned counter_idx = counters_per_group[entry->gid]++; in perfcntr_resume() 104 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid]; in perfcntr_resume() 105 unsigned counter_idx = counters_per_group[entry->gid]++; in perfcntr_resume() 131 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid]; in perfcntr_pause() 132 unsigned counter_idx = counters_per_group[entry->gid]++; in perfcntr_pause() 196 entry->gid = pq->group_id; in fd2_create_batch_query() 208 if (pq->group_id == entry->gid) in fd2_create_batch_query() 212 if (counters_per_group[entry->gid] >= in fd2_create_batch_query() [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | X7875_NewUnix.java | 70 private BigInteger gid; field in X7875_NewUnix 107 public long getGID() { return ZipUtil.bigToLong(gid); } in getGID() 124 this.gid = ZipUtil.longToBig(l); in setGID() 137 b = trimLeadingZeroesForceMinLength(gid.toByteArray()); in getLocalFileDataLength() 164 byte[] gidBytes = gid.toByteArray(); in getLocalFileDataData() 237 this.gid = new BigInteger(1, reverse(gidBytes)); // sign-bit forced positive in parseFromLocalFileData() 257 gid = ONE_THOUSAND; in reset() 269 return "0x7875 Zip Extra Field: UID=" + uid + " GID=" + gid; in toString() 282 return version == xf.version && uid.equals(xf.uid) && gid.equals(xf.gid); in equals() 294 hc ^= gid.hashCode(); in hashCode()
|
/external/ltp/testcases/kernel/syscalls/utils/ |
D | compat_tst_16.h | 64 #define GID16_CHECK(gid, sys_name) ({ \ argument 65 if (!GID_SIZE_CHECK(gid)) { \ 68 "version of %s()", gid, #gid, #sys_name); \ 92 int SETGID(GID_T gid) in SETGID() argument 94 TST_CREATE_SYSCALL(setgid, gid); in SETGID() 117 int SETFSGID(GID_T gid) in SETFSGID() argument 119 TST_CREATE_SYSCALL(setfsgid, gid); in SETFSGID()
|
/external/ltp/testcases/kernel/syscalls/chown/ |
D | chown05.c | 26 gid_t gid; member 40 gid_t expect_gid = tc[i].gid == (uid_t)-1 ? tc[i - 1].gid : tc[i].gid; in run() 42 TST_EXP_PASS(CHOWN(TESTFILE, tc[i].uid, tc[i].gid), "chown(%s, %d, %d), %s", in run() 43 TESTFILE, tc[i].uid, tc[i].gid, tc[i].desc); in run()
|
/external/ltp/testcases/kernel/syscalls/fchown/ |
D | fchown05.c | 28 gid_t gid; member 42 gid_t expect_gid = tc[i].gid == (uid_t)-1 ? tc[i - 1].gid : tc[i].gid; in run() 44 TST_EXP_PASS(FCHOWN(fd, tc[i].uid, tc[i].gid), "fchown(%i, %i, %i), %s", in run() 45 fd, tc[i].uid, tc[i].gid, tc[i].desc); in run()
|