Home
last modified time | relevance | path

Searched refs:slots (Results 1 – 25 of 151) sorted by relevance

1234567

/external/oprofile/libabi/
Dabi.cpp32 slots[entry->name] = entry->offset; in abi()
34 slots["little_endian"] = op_little_endian(); in abi()
40 if (slots.find(key) != slots.end()) in need()
41 return slots.find(key)->second; in need()
49 return slots == other.slots; in operator ==()
55 abi_iter i = abi.slots.begin(); in operator <<()
56 abi_iter e = abi.slots.end(); in operator <<()
69 abi.slots.clear(); in operator >>()
72 abi.slots[key] = val; in operator >>()
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
Dprofiledata_unittest.cc132 string Check(const ProfileDataSlot* slots, int num_slots) { in Check() argument
133 return CheckWithSkips(slots, num_slots, NULL, 0); in Check()
147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots,
162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, in CheckWithSkips() argument
181 if (slots[i] != filedata[i]) in CheckWithSkips()
404 ProfileDataSlot slots[] = { in TEST_F() local
417 EXPECT_EQ(kNoError, checker_.Check(slots, arraysize(slots))); in TEST_F()
425 ProfileDataSlot slots[] = { in TEST_F() local
438 EXPECT_EQ(kNoError, checker_.CheckWithSkips(slots, arraysize(slots), in TEST_F()
447 ProfileDataSlot slots[] = { in TEST_F() local
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
Dprofiledata_unittest.cc132 string Check(const ProfileDataSlot* slots, int num_slots) { in Check() argument
133 return CheckWithSkips(slots, num_slots, NULL, 0); in Check()
147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots,
162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, in CheckWithSkips() argument
181 if (slots[i] != filedata[i]) in CheckWithSkips()
404 ProfileDataSlot slots[] = { in TEST_F() local
417 EXPECT_EQ(kNoError, checker_.Check(slots, arraysize(slots))); in TEST_F()
425 ProfileDataSlot slots[] = { in TEST_F() local
438 EXPECT_EQ(kNoError, checker_.CheckWithSkips(slots, arraysize(slots), in TEST_F()
447 ProfileDataSlot slots[] = { in TEST_F() local
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/app/
DTestIDList.java80 static Object[] slots = new Object[16]; field in TestIDList
103 if (slots[slot] != val){ in setSlot()
105 slots[slot] = val; in setSlot()
111 if (slots[i] != null && enabledSlots[i] == false){ in checkSlots()
114 if (slots[i] == null && enabledSlots[i] == true){ in checkSlots()
120 if (slots[i] != val) in checkSlots()
125 if (slots[i] != null) in checkSlots()
137 slots[slot] = null; in clearSlots()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_asm.c811 struct r600_bytecode_alu *slots[5]) in check_and_set_bank_swizzle()
820 if (slots[i]) { in check_and_set_bank_swizzle()
821 if (slots[i]->bank_swizzle_force) { in check_and_set_bank_swizzle()
822 slots[i]->bank_swizzle = slots[i]->bank_swizzle_force; in check_and_set_bank_swizzle()
828 if (i < 4 && slots[i]) in check_and_set_bank_swizzle()
837 if (!slots[i] || !slots[i]->bank_swizzle_force) in check_and_set_bank_swizzle()
840 bank_swizzle[i] = slots[i]->bank_swizzle; in check_and_set_bank_swizzle()
854 if (slots[i]) { in check_and_set_bank_swizzle()
855 r = check_vector(bc, slots[i], &bs, bank_swizzle[i]); in check_and_set_bank_swizzle()
863 if (!r && slots[4] && max_slots == 5) { in check_and_set_bank_swizzle()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
Dr600_asm.c811 struct r600_bytecode_alu *slots[5]) in check_and_set_bank_swizzle()
820 if (slots[i]) { in check_and_set_bank_swizzle()
821 if (slots[i]->bank_swizzle_force) { in check_and_set_bank_swizzle()
822 slots[i]->bank_swizzle = slots[i]->bank_swizzle_force; in check_and_set_bank_swizzle()
828 if (i < 4 && slots[i]) in check_and_set_bank_swizzle()
837 if (!slots[i] || !slots[i]->bank_swizzle_force) in check_and_set_bank_swizzle()
840 bank_swizzle[i] = slots[i]->bank_swizzle; in check_and_set_bank_swizzle()
854 if (slots[i]) { in check_and_set_bank_swizzle()
855 r = check_vector(bc, slots[i], &bs, bank_swizzle[i]); in check_and_set_bank_swizzle()
863 if (!r && slots[4] && max_slots == 5) { in check_and_set_bank_swizzle()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
Dcompute.c306 static void init_sampler_views(struct context *ctx, const int *slots) in init_sampler_views() argument
312 for (i = 0; *slots >= 0; ++i, ++slots) { in init_sampler_views()
313 u_sampler_view_default_template(&tview, ctx->tex[*slots], in init_sampler_views()
314 ctx->tex[*slots]->format); in init_sampler_views()
316 ctx->view[i] = pipe->create_sampler_view(pipe, ctx->tex[*slots], in init_sampler_views()
339 static void init_compute_resources(struct context *ctx, const int *slots) in init_compute_resources() argument
344 for (i = 0; *slots >= 0; ++i, ++slots) { in init_compute_resources()
346 .format = ctx->tex[*slots]->format, in init_compute_resources()
347 .usage = ctx->tex[*slots]->bind, in init_compute_resources()
348 .writable = ctx->tex_rw[*slots] in init_compute_resources()
[all …]
/external/mesa3d/src/gallium/tests/trivial/
Dcompute.c306 static void init_sampler_views(struct context *ctx, const int *slots) in init_sampler_views() argument
312 for (i = 0; *slots >= 0; ++i, ++slots) { in init_sampler_views()
313 u_sampler_view_default_template(&tview, ctx->tex[*slots], in init_sampler_views()
314 ctx->tex[*slots]->format); in init_sampler_views()
316 ctx->view[i] = pipe->create_sampler_view(pipe, ctx->tex[*slots], in init_sampler_views()
339 static void init_compute_resources(struct context *ctx, const int *slots) in init_compute_resources() argument
344 for (i = 0; *slots >= 0; ++i, ++slots) { in init_compute_resources()
346 .format = ctx->tex[*slots]->format, in init_compute_resources()
347 .usage = ctx->tex[*slots]->bind, in init_compute_resources()
348 .writable = ctx->tex_rw[*slots] in init_compute_resources()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Duserdatarequest.h28 public slots:
31 protected slots:
Dscanresults.h26 public slots:
33 protected slots:
Dnetworkconfig.h33 public slots:
42 protected slots:
Deventhistory.h46 public slots:
50 protected slots:
Dpeers.h30 public slots:
55 protected slots:
Dwpagui.h41 public slots:
86 protected slots:
Daddinterface.h27 public slots:
/external/qemu/
Dkvm-all.c57 KVMSlot slots[32]; member
74 for (i = 0; i < ARRAY_SIZE(s->slots); i++) { in kvm_alloc_slot()
78 if (s->slots[i].memory_size == 0) in kvm_alloc_slot()
79 return &s->slots[i]; in kvm_alloc_slot()
92 for (i = 0; i < ARRAY_SIZE(s->slots); i++) { in kvm_lookup_matching_slot()
93 KVMSlot *mem = &s->slots[i]; in kvm_lookup_matching_slot()
114 for (i = 0; i < ARRAY_SIZE(s->slots); i++) { in kvm_lookup_overlapping_slot()
115 KVMSlot *mem = &s->slots[i]; in kvm_lookup_overlapping_slot()
274 for (i = 0; i < ARRAY_SIZE(s->slots); i++) { in kvm_set_migration_log()
275 mem = &s->slots[i]; in kvm_set_migration_log()
[all …]
/external/libselinux/src/
Davc.c33 struct avc_node *slots[AVC_CACHE_SLOTS]; member
139 avc_cache.slots[i] = 0; in avc_init()
227 node = avc_cache.slots[i]; in avc_av_stats()
260 cur = avc_cache.slots[hvalue]; in hidden_def()
281 avc_cache.slots[hvalue] = cur->next; in hidden_def()
319 new->next = avc_cache.slots[hvalue]; in avc_claim_node()
320 avc_cache.slots[hvalue] = new; in avc_claim_node()
336 cur = avc_cache.slots[hvalue]; in avc_search_node()
463 node = avc_cache.slots[i]; in hidden_def()
472 avc_cache.slots[i] = 0; in hidden_def()
[all …]
/external/libppp/src/
Dipcp.c106 u_char slots; member
382 ipcp->cfg.vj.slots, ipcp->cfg.vj.slotcomp ? "with" : "without"); in ipcp_Show()
422 int slots; in ipcp_vjset() local
424 slots = atoi(arg->argv[arg->argn+1]); in ipcp_vjset()
425 if (slots < 4 || slots > 16) in ipcp_vjset()
427 arg->bundle->ncp.ipcp.cfg.vj.slots = slots; in ipcp_vjset()
454 ipcp->cfg.vj.slots = DEF_VJ_STATES; in ipcp_Init()
582 ((ipcp->cfg.vj.slots - 1) << 8) + in ipcp_Setup()
586 sl_compress_init(&ipcp->vj.cslc, ipcp->cfg.vj.slots - 1); in ipcp_Setup()
777 req.slots = (ipcp->my_compproto >> 8) & 255; in IpcpSendConfigReq()
[all …]
/external/llvm/lib/Target/Mips/
DMipsCallingConv.td64 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned.
80 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned.
127 // Integer values get stored in stack slots that are 4 bytes in
131 // Integer values get stored in stack slots that are 8 bytes in
154 // Stack parameter slots for f64 are 64-bit doublewords and 8-byte aligned.
170 // Stack parameter slots for i64 and f64 are 64-bit doublewords and
191 // Stack parameter slots for i32 and f32 are 32-bit words and 4-byte aligned.
/external/llvm/lib/Target/X86/
DX86CallingConv.td235 // Integer/FP values get stored in stack slots that are 8 bytes in size and
239 // Long doubles get stack slots whose size and alignment depends on the
243 // Vectors get 16-byte stack slots that are 16-byte aligned.
246 // 256-bit vectors get 32-byte stack slots that are 32-byte aligned.
250 // 512-bit vectors get 64-byte stack slots that are 64-byte aligned.
297 // Integer/FP values get stored in stack slots that are 8 bytes in size and
301 // Long doubles get stack slots whose size and alignment depends on the
327 // Integer/FP values get stored in stack slots that are 8 bytes in size and
354 // Integer/Float values get stored in stack slots that are 4 bytes in
358 // Doubles get 8-byte slots that are 4-byte aligned.
[all …]
/external/chromium_org/third_party/mesa/src/src/glsl/
Dlinker.cpp1311 unsigned slots; in assign_attribute_or_color_locations() member
1321 return r->slots - l->slots; in assign_attribute_or_color_locations()
1369 const unsigned slots = count_attribute_slots(var->type); in assign_attribute_or_color_locations() local
1406 const unsigned use_mask = (1 << slots) - 1; in assign_attribute_or_color_locations()
1427 to_assign[num_attr].slots = slots; in assign_attribute_or_color_locations()
1456 const unsigned use_mask = (1 << to_assign[i].slots) - 1; in assign_attribute_or_color_locations()
1458 int location = find_available_slots(used_locations, to_assign[i].slots); in assign_attribute_or_color_locations()
1988 const unsigned slots = output_var->type->length in assign_varying_location() local
1991 *output_index += slots; in assign_varying_location()
1992 *input_index += slots; in assign_varying_location()
[all …]
/external/mesa3d/src/glsl/
Dlinker.cpp1311 unsigned slots; in assign_attribute_or_color_locations() member
1321 return r->slots - l->slots; in assign_attribute_or_color_locations()
1369 const unsigned slots = count_attribute_slots(var->type); in assign_attribute_or_color_locations() local
1406 const unsigned use_mask = (1 << slots) - 1; in assign_attribute_or_color_locations()
1427 to_assign[num_attr].slots = slots; in assign_attribute_or_color_locations()
1456 const unsigned use_mask = (1 << to_assign[i].slots) - 1; in assign_attribute_or_color_locations()
1458 int location = find_available_slots(used_locations, to_assign[i].slots); in assign_attribute_or_color_locations()
1988 const unsigned slots = output_var->type->length in assign_varying_location() local
1991 *output_index += slots; in assign_varying_location()
1992 *input_index += slots; in assign_varying_location()
[all …]
/external/chromium_org/third_party/tcmalloc/vendor/src/
Dpprof3508 slots => [],
3518 my $slots = $self->{slots};
3532 @$slots = unpack($self->{unpack_code} . "*", $str);
3555 @$slots = (0, $pair[0] + $pair[1]);
3563 my $slots = $self->{slots};
3564 $self->{base} += $#$slots + 1; # skip over data we're replacing
3569 @$slots = unpack($self->{unpack_code} . "*", $str);
3590 @$slots = @b64_values;
3597 my $slots = $self->{slots};
3598 while ($#$slots >= 0) {
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dpprof3508 slots => [],
3518 my $slots = $self->{slots};
3532 @$slots = unpack($self->{unpack_code} . "*", $str);
3555 @$slots = (0, $pair[0] + $pair[1]);
3563 my $slots = $self->{slots};
3564 $self->{base} += $#$slots + 1; # skip over data we're replacing
3569 @$slots = unpack($self->{unpack_code} . "*", $str);
3590 @$slots = @b64_values;
3597 my $slots = $self->{slots};
3598 while ($#$slots >= 0) {
[all …]
/external/kernel-headers/original/linux/
Defs_dir.h28 unsigned char slots; member

1234567