HomeSort by relevance Sort by last modified time
    Searched refs:num_groups (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/
rpc_authunix_create.c 63 int num_groups; local
69 num_groups = getgroups(NGROUPS_MAX, groups);
70 if (num_groups == -1) {
81 authUnx = authunix_create(hostname, uid, gid, num_groups, aup_gids);
  /external/mesa3d/src/mesa/main/
compute.c 35 const GLuint num_groups[3] = { num_groups_x, num_groups_y, num_groups_z }; local
41 if (!_mesa_validate_DispatchCompute(ctx, num_groups))
47 ctx->Driver.DispatchCompute(ctx, num_groups);
70 const GLuint num_groups[3] = { num_groups_x, num_groups_y, num_groups_z }; local
79 if (!_mesa_validate_DispatchComputeGroupSizeARB(ctx, num_groups,
86 ctx->Driver.DispatchComputeGroupSize(ctx, num_groups, group_size);
api_validate.h 129 const GLuint *num_groups);
137 const GLuint *num_groups,
  /external/mesa3d/src/mesa/state_tracker/
st_cb_compute.c 38 const GLuint *num_groups,
61 info.grid[i] = num_groups ? num_groups[i] : 0;
73 const GLuint *num_groups)
75 st_dispatch_compute_common(ctx, num_groups, NULL, NULL, 0);
88 const GLuint *num_groups,
91 st_dispatch_compute_common(ctx, num_groups, group_size, NULL, 0);
st_cb_perfmon.c 350 int num_counters, num_groups; local
357 num_groups = screen->get_driver_query_group_info(screen, 0, NULL);
358 groups = CALLOC(num_groups, sizeof(*groups));
362 stgroups = CALLOC(num_groups, sizeof(*stgroups));
366 for (gid = 0; gid < num_groups; gid++) {
444 for (gid = 0; gid < num_groups; gid++) {
  /external/vboot_reference/cgpt/
cgpt_prioritize.c 25 int num_groups; // number of non-empty groups member in struct:__anon43224
35 gl->num_groups = 0;
57 for (i=0; i<gl->num_groups; i++)
60 if (i == gl->num_groups) {
63 gl->num_groups++;
74 for (i=0; i<gl->num_groups; i++)
86 for (i=1; i<gl->num_groups; i++) {
174 i = groups->num_groups;
176 groups->num_groups--;
182 priority = groups->num_groups > 15 ? 15 : groups->num_groups
    [all...]
  /external/ltp/testcases/kernel/sched/cfs-scheduler/
hackbench.c 295 unsigned int i, j, num_groups = 10, total_children; local
308 if (argc >= 2 && (num_groups = atoi(argv[1])) == 0)
312 num_groups, num_groups * 40);
328 pth_tab = malloc(num_fds * 2 * num_groups * sizeof(pthread_t));
329 snd_ctx_tab = malloc(num_groups * sizeof(void *));
330 rev_ctx_tab = malloc(num_groups * num_fds * sizeof(void *));
338 for (i = 0; i < num_groups; i++)
365 for (i = 0; i < num_groups; i++) {
  /external/autotest/client/tests/hackbench/
hackbench.py 32 def run_once(self, num_groups=90):
37 @param num_groups: Number of children processes hackbench will spawn.
40 cmd = '%s %s' % (hackbench_bin, num_groups)
  /external/minijail/test/
libminijail_test.cpp 118 size_t num_groups = arraysize(groups); local
119 minijail_set_supplementary_gids(j, num_groups, groups);
124 success = success && check_groups(num_groups, groups);
  /external/libxaac/decoder/
ixheaacd_acelp_info.h 54 WORD32 num_groups; member in struct:__anon26477
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_slab.c 200 unsigned num_groups; local
217 num_groups = slabs->num_orders * slabs->num_heaps;
218 slabs->groups = CALLOC(num_groups, sizeof(*slabs->groups));
222 for (i = 0; i < num_groups; ++i) {
  /external/mesa3d/src/gallium/drivers/radeon/
r600_perfcounter.c 45 unsigned total = block->num_groups * block->num_selectors;
53 *base_gid += block->num_groups;
66 if (*index < block->num_groups)
68 *index -= block->num_groups;
462 block->group_names = MALLOC(block->num_groups * block->group_name_stride);
496 block->selector_names = MALLOC(block->num_groups * block->num_selectors *
503 for (i = 0; i < block->num_groups; ++i) {
530 pc->blocks[bid].num_groups;
551 if (sub > 0 && sub + 1 < block->num_selectors * block->num_groups)
567 return pc->num_groups;
    [all...]
r600_query.h 215 unsigned num_groups; member in struct:r600_perfcounter_block
226 unsigned num_groups; member in struct:r600_perfcounters
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_compute.c 121 const GLuint *num_groups = brw->compute.num_work_groups; local
158 OUT_BATCH(num_groups[0]); /* Thread Group ID X Dimension */
162 OUT_BATCH(num_groups[1]); /* Thread Group ID Y Dimension */
164 OUT_BATCH(num_groups[2]); /* Thread Group ID Z Dimension */
250 brw_dispatch_compute(struct gl_context *ctx, const GLuint *num_groups) {
254 brw->compute.num_work_groups = num_groups;
  /external/deqp/external/openglcts/modules/gles31/
es31cComputeShaderTests.cpp 644 const GLuint num_groups[3] = { 1, 1, 1 }; local
648 glBufferData(GL_DISPATCH_INDIRECT_BUFFER, sizeof(num_groups), num_groups, GL_STATIC_DRAW);
752 std::string GenSource(const uvec3& local_size, const uvec3& num_groups)
754 const uvec3 global_size = local_size * num_groups;
792 bool RunIteration(const uvec3& local_size, const uvec3& num_groups, bool dispatch_indirect)
796 m_program = CreateComputeProgram(GenSource(local_size, num_groups));
810 local_size.x() * num_groups.x() * local_size.y() * num_groups.y() * local_size.z() * num_groups.z()
3415 const GLuint num_groups[3] = { 1, 1, 1 }; local
5170 const GLuint num_groups[6] = { 1, 1, 1, 1, 1, 1 }; local
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
keymap.c 138 for (group = 0; group < key->num_groups; group++) {
204 for (i = 0; i < key->num_groups; i++)
215 keymap->num_groups = MAX(keymap->num_groups, key->num_groups);
  /external/autotest/client/tests/hackbench/src/
hackbench.c 316 unsigned int i, num_groups = 10, total_children; local
329 if (argc >= 2 && (num_groups = atoi(argv[1])) == 0)
333 num_groups, num_groups*40);
349 pth_tab = malloc(num_fds * 2 * num_groups * sizeof(pthread_t));
358 for (i = 0; i < num_groups; i++)
  /system/core/liblog/
logger_write.c 66 int num_groups; local
69 num_groups = getgroups(0, NULL);
70 if (num_groups <= 0) {
73 groups = calloc(num_groups, sizeof(gid_t));
77 num_groups = getgroups(num_groups, groups);
78 while (num_groups > 0) {
79 if (groups[num_groups - 1] == AID_LOG) {
82 --num_groups;
85 if (num_groups <= 0)
    [all...]
  /external/libxkbcommon/xkbcommon/src/
keymap.c 73 for (unsigned i = 0; i < key->num_groups; i++) {
300 return keymap->num_groups;
345 return key->num_groups;
360 layout = XkbWrapGroupIntoRange(layout, key->num_groups,
426 layout = XkbWrapGroupIntoRange(layout, key->num_groups,
state.c 153 if (!key || layout >= key->num_groups)
166 xkb_layout_index_t num_groups,
170 if (num_groups == 0)
173 if (group >= 0 && (xkb_layout_index_t) group < num_groups)
178 if (out_of_range_group_number >= num_groups)
186 return num_groups - 1;
195 return ((int) num_groups + (group % (int) num_groups));
197 return group % num_groups;
213 return XkbWrapGroupIntoRange(state->components.group, key->num_groups,
    [all...]
keymap.h 345 xkb_layout_index_t num_groups; member in struct:xkb_key
387 xkb_layout_index_t num_groups; member in struct:xkb_keymap
460 xkb_layout_index_t num_groups,
  /external/deqp/external/openglcts/modules/gl/
gl4cComputeShaderTests.cpp 635 const GLuint num_groups[3] = { 1, 1, 1 }; local
639 glBufferData(GL_DISPATCH_INDIRECT_BUFFER, sizeof(num_groups), num_groups, GL_STATIC_DRAW);
744 std::string GenSource(const uvec3& local_size, const uvec3& num_groups)
746 const uvec3 global_size = local_size * num_groups;
784 bool RunIteration(const uvec3& local_size, const uvec3& num_groups, bool dispatch_indirect)
788 m_program = CreateComputeProgram(GenSource(local_size, num_groups));
811 local_size.x() * num_groups.x() * local_size.y() * num_groups.y() * local_size.z() * num_groups.z()
3762 const GLuint num_groups[3] = { 1, 1, 1 }; local
6197 const GLuint num_groups[6] = { 1, 1, 1, 1, 1, 1 }; local
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 1794 FT_UInt32 num_groups; local
1894 FT_UInt32 num_groups = TT_NEXT_ULONG( p ); local
1930 FT_UInt32 num_groups = TT_NEXT_ULONG( p ); local
2235 FT_ULong num_groups; member in struct:TT_CMap12Rec_
2261 FT_ULong num_groups; local
2390 FT_UInt32 num_groups = TT_PEEK_ULONG( p ); local
2591 FT_ULong num_groups; member in struct:TT_CMap13Rec_
2617 FT_ULong num_groups; local
2721 FT_UInt32 num_groups = TT_PEEK_ULONG( p ); local
    [all...]
  /external/autotest/frontend/tko/
rpc_interface_unittest_fixme.py 453 num_groups = rpc_interface.get_num_groups(
455 self.assertEquals(num_groups, 2)
460 self.assertEquals(len(groups), num_groups)
496 num_groups = rpc_interface.get_num_groups(
498 self.assertEquals(num_groups, 2)
539 num_groups = rpc_interface.get_num_groups(
542 self.assertEquals(num_groups, 2)
  /external/libxkbcommon/xkbcommon/src/x11/
keymap.c 418 key->num_groups = wire_sym_map->groupInfo & 0x0f;
419 FAIL_UNLESS(key->num_groups <= ARRAY_SIZE(wire_sym_map->kt_index));
420 ALLOC_OR_FAIL(key->groups, key->num_groups);
422 for (unsigned j = 0; j < key->num_groups; j++) {
431 FAIL_UNLESS(key->out_of_range_group_number <= key->num_groups);
444 FAIL_UNLESS((unsigned) syms_length == wire_sym_map->width * key->num_groups);
561 key->num_groups > 0)
564 key->num_groups > 1)
567 key->num_groups > 2)
570 key->num_groups > 3
    [all...]

Completed in 605 milliseconds

1 2 3