Searched defs:slots (Results 1 - 25 of 44) sorted by relevance

12

/external/oprofile/libabi/
H A Dabi.h39 std::map<std::string, int> slots; member in class:abi
/external/libunwind/include/tdep-ia64/
H A Drse.h48 uint64_t slots = (bsp - bspstore) >> 3; local
50 return slots - (rse_slot_num(bspstore) + slots)/0x40;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_shader.cpp185 const ir_state_slot *const slots = var->state_slots; local
190 (gl_state_index *) slots[i].tokens);
H A Dbrw_fs.cpp569 const ir_state_slot *const slots = ir->state_slots; local
577 (gl_state_index *)slots[i].tokens);
585 int swiz = GET_SWZ(slots[i].swizzle, j);
965 * also written to. In addition, some slots can be
H A Dbrw_vec4_visitor.cpp561 const ir_state_slot *const slots = ir->state_slots; local
571 (gl_state_index *)slots[i].tokens);
580 int swiz = GET_SWZ(slots[i].swizzle, j);
1706 * those channels appear in the slots of the vec4 they're written to.
2197 /* Clip distance slots are set aside in gen5, but they are not used. It
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_shader.cpp185 const ir_state_slot *const slots = var->state_slots; local
190 (gl_state_index *) slots[i].tokens);
H A Dbrw_fs.cpp569 const ir_state_slot *const slots = ir->state_slots; local
577 (gl_state_index *)slots[i].tokens);
585 int swiz = GET_SWZ(slots[i].swizzle, j);
965 * also written to. In addition, some slots can be
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dprofiledata_unittest.cc128 // Checks the first 'num_slots' profile data slots in the file
129 // against the data pointed to by 'slots'. Returns kNoError if the
132 string Check(const ProfileDataSlot* slots, int num_slots) { argument
133 return CheckWithSkips(slots, num_slots, NULL, 0);
136 // Checks the first 'num_slots' profile data slots in the file
137 // against the data pointed to by 'slots', skipping over entries
142 // any skipped slots, i.e., the first 'num_slots' profile data slots
147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots,
162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, argument
404 ProfileDataSlot slots[] = { local
425 ProfileDataSlot slots[] = { local
447 ProfileDataSlot slots[] = { local
475 ProfileDataSlot slots[] = { local
493 ProfileDataSlot slots[] = { local
517 ProfileDataSlot slots[] = { local
543 ProfileDataSlot slots[] = { local
590 ProfileDataSlot slots[] = { local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dprofiledata_unittest.cc128 // Checks the first 'num_slots' profile data slots in the file
129 // against the data pointed to by 'slots'. Returns kNoError if the
132 string Check(const ProfileDataSlot* slots, int num_slots) { argument
133 return CheckWithSkips(slots, num_slots, NULL, 0);
136 // Checks the first 'num_slots' profile data slots in the file
137 // against the data pointed to by 'slots', skipping over entries
142 // any skipped slots, i.e., the first 'num_slots' profile data slots
147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots,
162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, argument
404 ProfileDataSlot slots[] = { local
425 ProfileDataSlot slots[] = { local
447 ProfileDataSlot slots[] = { local
475 ProfileDataSlot slots[] = { local
493 ProfileDataSlot slots[] = { local
517 ProfileDataSlot slots[] = { local
543 ProfileDataSlot slots[] = { local
590 ProfileDataSlot slots[] = { local
[all...]
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dfetch.c158 size_t slots = (size + 7) / 8; local
160 while (slots-- > 0) {
268 * Because HFAs are mapped to parameter slots as aggregates,
/external/aac/libSBRenc/src/
H A Dtran_det.cpp188 int slots)
202 for (; ts<tran_offdiv2+(slots>>nrgSzShift); ts++) {
620 /* Check for transients in first <frameShift> qmf-slots of second frame */
182 addLowbandEnergies(FIXP_DBL **Energies, int *scaleEnergies, int YBufferWriteOffset, int nrgSzShift, int tran_off, UCHAR *freqBandTable, int slots) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dbuiltin_variables.cpp443 ir_state_slot *slots = local
446 uni->state_slots = slots;
452 memcpy(slots->tokens, element->tokens, sizeof(element->tokens));
456 slots->tokens[2] = a;
458 slots->tokens[1] = a;
462 slots->swizzle = element->swizzle;
463 slots++;
H A Dlinker.cpp221 * Determine the number of attribute slots required for a particular type
240 * should be safe to assume the total number of slots consumed by an array
241 * is the number of entries in the array multiplied by the number of slots
1197 * fixed-function state), adjust the number of state slots to
1198 * match the new array size. The number of slots per array entry
1200 * slots is an integer multiple of the number of array elements.
1201 * Determine the number of slots per array element by dividing by
1291 * 3. Sort the attributes without assigned locations by number of slots
1311 unsigned slots; member in struct:temp_attr
1321 return r->slots
1369 const unsigned slots = count_attribute_slots(var->type); local
1988 const unsigned slots = output_var->type->length local
1994 const unsigned slots = output_var->type->matrix_columns; local
[all...]
/external/f2fs-tools/fsck/
H A Dfsck.c708 int slots = (name_len + F2FS_SLOT_LEN - 1) / local
710 for (j = 0; j < slots; j++)
716 i += slots;
749 "dentries:%d in %d slots (len:%d)\n\n",
783 "dentries:%d in %d slots (len:%d)\n\n",
/external/libselinux/src/
H A Davc.c33 struct avc_node *slots[AVC_CACHE_SLOTS]; member in struct:avc_cache
139 avc_cache.slots[i] = 0;
227 node = avc_cache.slots[i];
260 cur = avc_cache.slots[hvalue];
281 avc_cache.slots[hvalue] = cur->next;
319 new->next = avc_cache.slots[hvalue];
320 avc_cache.slots[hvalue] = new;
336 cur = avc_cache.slots[hvalue];
463 node = avc_cache.slots[i];
472 avc_cache.slots[
[all...]
/external/mesa3d/src/glsl/
H A Dbuiltin_variables.cpp443 ir_state_slot *slots = local
446 uni->state_slots = slots;
452 memcpy(slots->tokens, element->tokens, sizeof(element->tokens));
456 slots->tokens[2] = a;
458 slots->tokens[1] = a;
462 slots->swizzle = element->swizzle;
463 slots++;
/external/qemu/distrib/libselinux/src/
H A Davc.c33 struct avc_node *slots[AVC_CACHE_SLOTS]; member in struct:avc_cache
139 avc_cache.slots[i] = 0;
227 node = avc_cache.slots[i];
260 cur = avc_cache.slots[hvalue];
281 avc_cache.slots[hvalue] = cur->next;
319 new->next = avc_cache.slots[hvalue];
320 avc_cache.slots[hvalue] = new;
336 cur = avc_cache.slots[hvalue];
463 node = avc_cache.slots[i];
472 avc_cache.slots[
[all...]
/external/qemu/
H A Dkvm-all.c59 KVMSlot slots[32]; member in struct:KVMState
76 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
77 /* KVM private memory slots */
80 if (s->slots[i].memory_size == 0)
81 return &s->slots[i];
94 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
95 KVMSlot *mem = &s->slots[i];
114 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
115 KVMSlot *mem = &s->slots[i];
117 // Skip empty slots
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_asm.c811 struct r600_bytecode_alu *slots[5])
820 if (slots[i]) {
821 if (slots[i]->bank_swizzle_force) {
822 slots[i]->bank_swizzle = slots[i]->bank_swizzle_force;
828 if (i < 4 && slots[i])
837 if (!slots[i] || !slots[i]->bank_swizzle_force)
840 bank_swizzle[i] = slots[i]->bank_swizzle;
854 if (slots[
810 check_and_set_bank_swizzle(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5]) argument
893 replace_gpr_with_pv_ps(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
1031 merge_inst_groups(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
1504 struct r600_bytecode_alu *slots[5]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A Dcompute.c306 static void init_sampler_views(struct context *ctx, const int *slots) argument
312 for (i = 0; *slots >= 0; ++i, ++slots) {
313 u_sampler_view_default_template(&tview, ctx->tex[*slots],
314 ctx->tex[*slots]->format);
316 ctx->view[i] = pipe->create_sampler_view(pipe, ctx->tex[*slots],
339 static void init_compute_resources(struct context *ctx, const int *slots) argument
344 for (i = 0; *slots >= 0; ++i, ++slots) {
346 .format = ctx->tex[*slots]
408 init_globals(struct context *ctx, const int *slots, uint32_t **handles) argument
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.c811 struct r600_bytecode_alu *slots[5])
820 if (slots[i]) {
821 if (slots[i]->bank_swizzle_force) {
822 slots[i]->bank_swizzle = slots[i]->bank_swizzle_force;
828 if (i < 4 && slots[i])
837 if (!slots[i] || !slots[i]->bank_swizzle_force)
840 bank_swizzle[i] = slots[i]->bank_swizzle;
854 if (slots[
810 check_and_set_bank_swizzle(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5]) argument
893 replace_gpr_with_pv_ps(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
1031 merge_inst_groups(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
1504 struct r600_bytecode_alu *slots[5]; local
[all...]
/external/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c306 static void init_sampler_views(struct context *ctx, const int *slots) argument
312 for (i = 0; *slots >= 0; ++i, ++slots) {
313 u_sampler_view_default_template(&tview, ctx->tex[*slots],
314 ctx->tex[*slots]->format);
316 ctx->view[i] = pipe->create_sampler_view(pipe, ctx->tex[*slots],
339 static void init_compute_resources(struct context *ctx, const int *slots) argument
344 for (i = 0; *slots >= 0; ++i, ++slots) {
346 .format = ctx->tex[*slots]
408 init_globals(struct context *ctx, const int *slots, uint32_t **handles) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ra.cpp280 std::list<SpillSlot> slots; member in class:nv50_ir::SpillCodeInserter
1392 std::list<SpillSlot>::iterator pos = slots.end(), it = slots.begin();
1400 while (it != slots.end() && it->offset < offset)
1402 if (it == slots.end()) // no slots left
1406 while (it != slots.end() && it->offset < (offset + size)) {
1412 if (it == slots.end() || it->offset >= (offset + size)) {
1414 for (; bgn != slots.end() && bgn->offset < (offset + size); ++bgn) {
1430 slots
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dir_to_mesa.cpp686 const ir_state_slot *const slots = ir->state_slots; local
696 if (slots[i].swizzle != SWIZZLE_XYZW) {
710 /* The variable_storage constructor allocates slots based on the size
727 (gl_state_index *)slots[i].tokens);
737 src.swizzle = slots[i].swizzle;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ra.cpp280 std::list<SpillSlot> slots; member in class:nv50_ir::SpillCodeInserter
1392 std::list<SpillSlot>::iterator pos = slots.end(), it = slots.begin();
1400 while (it != slots.end() && it->offset < offset)
1402 if (it == slots.end()) // no slots left
1406 while (it != slots.end() && it->offset < (offset + size)) {
1412 if (it == slots.end() || it->offset >= (offset + size)) {
1414 for (; bgn != slots.end() && bgn->offset < (offset + size); ++bgn) {
1430 slots
[all...]

Completed in 1295 milliseconds

12