/external/strace/tests/ |
D | uid.awk | 62 ngroups = a[1] 63 if (ngroups == "0") 65 else if (ngroups == "1") 68 list=r_uint "(, " r_uint "){" (ngroups - 1) "}" 70 regexp = "^getgroups" suffix "\\(" ngroups ", \\[" list "\\]\\)[[:space:]]+= " ngroups "$"
|
/external/jemalloc/src/ |
D | bitmap.c | 85 binfo->ngroups = i; in bitmap_info_init() 93 return (binfo->ngroups); in bitmap_info_ngroups() 102 extra = (binfo->nbits % (binfo->ngroups * BITMAP_GROUP_NBITS)); in bitmap_init() 104 bitmap[binfo->ngroups - 1] >>= (BITMAP_GROUP_NBITS - extra); in bitmap_init()
|
/external/toybox/toys/posix/ |
D | id.c | 87 int flags, i, ngroups; in do_id() local 131 ngroups = username ? getgrouplist(username, gid, groups, &i) in do_id() 133 if (ngroups<0) perror_exit(0); in do_id() 136 for (i = 0; i<ngroups; i++) { in do_id()
|
/external/elfutils/libasm/ |
D | asm_newscngrp.c | 89 if (ctx->ngroups == 0) in asm_newscngrp() 99 ++ctx->ngroups; in asm_newscngrp()
|
D | libasmP.h | 171 size_t ngroups; member
|
D | asm_begin.c | 123 result->ngroups = 0; in prepare_binary_output()
|
/external/tcpdump/ |
D | print-igmp.c | 152 u_int group, nsrcs, ngroups; in print_igmpv3_report() local 161 ngroups = EXTRACT_16BITS(&bp[6]); in print_igmpv3_report() 162 ND_PRINT((ndo, ", %d group record(s)", ngroups)); in print_igmpv3_report() 166 for (i=0; i<ngroups; i++) { in print_igmpv3_report()
|
D | print-pim.c | 143 int ngroups, njoin, nprune; in pimv1_join_prune_print() local 184 ngroups = bp[3]; in pimv1_join_prune_print() 187 while (ngroups--) { in pimv1_join_prune_print()
|
D | print-icmp6.c | 1427 u_int group, nsrcs, ngroups; in mldv2_report_print() local 1437 ngroups = EXTRACT_16BITS(&icp->icmp6_data16[1]); in mldv2_report_print() 1438 ND_PRINT((ndo,", %d group record(s)", ngroups)); in mldv2_report_print() 1442 for (i = 0; i < ngroups; i++) { in mldv2_report_print()
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | work-item-intrinsics.ll | 34 %0 = call i32 @llvm.r600.read.ngroups.x() #0 49 %0 = call i32 @llvm.r600.read.ngroups.y() #0 64 %0 = call i32 @llvm.r600.read.ngroups.z() #0 251 declare i32 @llvm.r600.read.ngroups.x() #0 252 declare i32 @llvm.r600.read.ngroups.y() #0 253 declare i32 @llvm.r600.read.ngroups.z() #0
|
/external/libjpeg-turbo/ |
D | jdmainct.c | 421 int ci, rgroup, ngroups; in jinit_d_main_controller() local 440 ngroups = cinfo->_min_DCT_scaled_size + 2; in jinit_d_main_controller() 442 ngroups = cinfo->_min_DCT_scaled_size; in jinit_d_main_controller() 452 (JDIMENSION) (rgroup * ngroups)); in jinit_d_main_controller()
|
/external/pdfium/third_party/libjpeg/ |
D | fpdfapi_jdmainct.c | 479 int ci, rgroup, ngroups; in jinit_d_main_controller() local 498 ngroups = cinfo->min_DCT_scaled_size + 2; in jinit_d_main_controller() 500 ngroups = cinfo->min_DCT_scaled_size; in jinit_d_main_controller() 510 (JDIMENSION) (rgroup * ngroups)); in jinit_d_main_controller()
|
/external/opencv3/3rdparty/libjpeg/ |
D | jdmainct.c | 480 int ci, rgroup, ngroups; in jinit_d_main_controller() local 499 ngroups = cinfo->min_DCT_v_scaled_size + 2; in jinit_d_main_controller() 501 ngroups = cinfo->min_DCT_v_scaled_size; in jinit_d_main_controller() 511 (JDIMENSION) (rgroup * ngroups)); in jinit_d_main_controller()
|
/external/libcap/progs/ |
D | capsh.c | 415 int status, ngroups; in main() local 423 ngroups = MAX_GROUPS; in main() 424 status = getgrouplist(user, pwd->pw_gid, groups, &ngroups); in main() 429 status = setgroups(ngroups, groups); in main()
|
/external/jemalloc/include/jemalloc/internal/ |
D | bitmap.h | 109 size_t ngroups; member 145 for (i = 0; i < binfo->ngroups; i++) { in bitmap_full()
|
/external/opencv3/modules/objdetect/src/opencl/ |
D | cascadedetect.cl | 87 int i, ngroups = get_global_size(0)/LOCAL_SIZE_X; 127 for( tileIdx = groupIdx; tileIdx < totalTiles; tileIdx += ngroups ) 385 int ngroups = get_num_groups(0)*get_num_groups(1); 398 for( tileIdx = groupIdx; tileIdx < totalTiles; tileIdx += ngroups ) 471 int i, ngroups = get_global_size(0)/LOCAL_SIZE_X; 496 for( tileIdx = groupIdx; tileIdx < totalTiles; tileIdx += ngroups )
|
/external/valgrind/coregrind/m_coredump/ |
D | coredump-solaris.c | 626 Int ngroups = VG_(getgroups)(VKI_NGROUPS_MAX, group_list); in create_prcred() local 627 if (ngroups == -1) in create_prcred() 628 ngroups = 0; in create_prcred() 630 *size = sizeof(vki_prcred_t) + (ngroups - 1) * sizeof(gid_t); in create_prcred() 640 prcred->pr_ngroups = ngroups; in create_prcred() 643 for (i = 0; i < ngroups; i++) in create_prcred()
|
/external/opencv3/modules/core/src/ |
D | stat.cpp | 1066 int ngroups = dev.maxComputeUnits(), dbsize = ngroups * (calc2 ? 2 : 1); in ocl_sum() local 1110 k.args(srcarg, src.cols, (int)src.total(), ngroups, dbarg, maskarg, src2arg); in ocl_sum() 1112 k.args(srcarg, src.cols, (int)src.total(), ngroups, dbarg, maskarg); in ocl_sum() 1117 k.args(srcarg, src.cols, (int)src.total(), ngroups, dbarg, src2arg); in ocl_sum() 1119 k.args(srcarg, src.cols, (int)src.total(), ngroups, dbarg); in ocl_sum() 1122 size_t globalsize = ngroups * wgs; in ocl_sum() 1131 const_cast<Scalar &>(res2) = func(mres.colRange(ngroups, dbsize)); in ocl_sum() 1133 res = func(mres.colRange(0, ngroups)); in ocl_sum()
|
/external/ppp/pppd/ |
D | main.c | 203 int ngroups; /* How many groups valid in groups */ variable 344 ngroups = getgroups(NGROUPS_MAX, groups);
|
D | pppd.h | 232 extern int ngroups; /* How many groups valid in groups */
|
D | options.c | 1126 for (i = 0; i < ngroups; ++i)
|
D | auth.c | 486 for (i = 0; i < ngroups; ++i) {
|
/external/regex-re2/re2/ |
D | parse.cc | 1407 UGroup *groups, int ngroups) { in LookupGroup() argument 1409 for (int i = 0; i < ngroups; i++) in LookupGroup()
|
/external/elfutils/src/ |
D | readelf.c | 8780 size_t ngroups = 1; in handle_core_items() local 8784 groups[ngroups++] = &sorted_items[i]; in handle_core_items() 8785 qsort (groups, ngroups, sizeof groups[0], &compare_core_item_groups); in handle_core_items() 8791 for (size_t i = 0; i < ngroups; ++i) in handle_core_items()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |