Searched defs:slot_count (Results 1 - 15 of 15) sorted by relevance

/external/valgrind/memcheck/tests/solaris/
H A Dpkcs11.c15 CK_ULONG slot_count; local
16 ret = C_GetSlotList(0, NULL, &slot_count);
22 CK_SLOT_ID_PTR slots = malloc(slot_count * sizeof(CK_SLOT_ID));
28 ret = C_GetSlotList(0, slots, &slot_count);
35 for (i = 0; i < slot_count; i++) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_interpolation_map.c42 unsigned location, unsigned slot_count,
45 for (unsigned k = 0; k < slot_count; k++) {
82 unsigned slot_count = glsl_count_attribute_slots(var->type, false); local
84 gen4_frag_prog_set_interp_modes(prog_data, vue_map, location, slot_count,
90 slot_count, var->data.interpolation);
40 gen4_frag_prog_set_interp_modes(struct brw_wm_prog_data *prog_data, struct brw_vue_map *vue_map, unsigned location, unsigned slot_count, enum glsl_interp_mode interp) argument
/external/libchrome/crypto/
H A Dnss_key_util.cc127 int slot_count = item->module->loaded ? item->module->slotCount : 0; local
128 for (int i = 0; i < slot_count; i++) {
/external/v8/src/compiler/
H A Dframe.h123 int ReserveSpillSlots(size_t slot_count) { argument
125 spill_slot_count_ += static_cast<int>(slot_count);
126 frame_slot_count_ += static_cast<int>(slot_count);
H A Djs-operator.h310 CreateFunctionContextParameters(int slot_count, ScopeType scope_type);
312 int slot_count() const { return slot_count_; } function in class:v8::internal::compiler::final
704 const Operator* CreateFunctionContext(int slot_count, ScopeType scope_type);
H A Djs-create-lowering.cc843 int slot_count = parameters.slot_count(); local
848 if (slot_count < kFunctionContextAllocationLimit) {
849 // JSCreateFunctionContext[slot_count < limit]](fun)
856 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS;
H A Djs-generic-lowering.cc401 int slot_count = parameters.slot_count(); local
405 if (slot_count <=
409 node->InsertInput(zone(), 1, jsgraph()->Int32Constant(slot_count));
H A Djs-operator.cc247 int slot_count, ScopeType scope_type)
248 : slot_count_(slot_count), scope_type_(scope_type) {}
252 return lhs.slot_count() == rhs.slot_count() &&
262 return base::hash_combine(parameters.slot_count(),
268 return os << parameters.slot_count() << ", " << parameters.scope_type();
1037 const Operator* JSOperatorBuilder::CreateFunctionContext(int slot_count, argument
1039 CreateFunctionContextParameters parameters(slot_count, scope_type);
246 CreateFunctionContextParameters( int slot_count, ScopeType scope_type) argument
H A Dast-graph-builder.cc2301 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
2303 javascript()->CreateFunctionContext(slot_count, scope->scope_type());
/external/v8/src/
H A Dfeedback-vector-inl.h37 int FeedbackMetadata::slot_count() const { function in class:v8::internal::FeedbackMetadata
84 int FeedbackVector::slot_count() const { function in class:v8::internal::FeedbackVector
269 return next_slot_.ToInt() < metadata()->slot_count();
H A Dfeedback-vector.cc53 const int slot_count = spec->slots(); local
54 const int slot_kinds_length = VectorICComputer::word_count(slot_count);
60 for (int i = 0; i < slot_count;) {
72 array->set(kSlotsCountIndex, Smi::FromInt(slot_count));
80 for (int i = 0; i < slot_count; i++) {
98 if (other_spec->slots() != slot_count()) {
102 int slots = slot_count();
171 const int slot_count = shared->feedback_metadata()->slot_count(); local
172 const int length = slot_count
[all...]
H A Dobjects-printer.cc638 int slot_count = This()->slots(); local
639 os << " - slot_count: " << slot_count; local
640 if (slot_count == 0) {
645 for (int slot = 0; slot < slot_count;) {
668 os << "\n - slot_count: " << slot_count();
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_sched.h167 unsigned slot_count() { return inst_count() + literal_slot_count(); } function in class:r600_sb::alu_group_tracker
204 unsigned slot_count; member in class:r600_sb::alu_clause_tracker
245 unsigned total_slots() { return slot_count; }
/external/vulkan-validation-layers/tests/
H A Dvktestbinding.h369 static VkQueryPoolCreateInfo create_info(VkQueryType type, uint32_t slot_count);
780 inline VkQueryPoolCreateInfo QueryPool::create_info(VkQueryType type, uint32_t slot_count) { argument
784 info.queryCount = slot_count;
/external/v8/src/interpreter/
H A Dbytecode-generator.cc3181 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; local
3182 if (slot_count <=
3186 builder()->CreateEvalContext(slot_count);
3189 builder()->CreateFunctionContext(slot_count);

Completed in 542 milliseconds