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

1 2 3

  /system/media/alsa_utils/
alsa_format.c 93 int slot_index, bit_index, table_index; local
95 for (slot_index = 0; slot_index < num_slots && table_index < table_size; slot_index++) {
99 if (table_index >= 2 && (mask->bits[slot_index] & bit_mask) != 0) {
alsa_logging.c 42 size_t slot_index, bit_index; local
44 for (slot_index = 0; slot_index < num_slots; slot_index++) {
47 strcat(buff, (mask->bits[slot_index] & bit_mask) != 0 ? "1" : "0");
50 if (slot_index < num_slots - 1) {
alsa_device_profile.c 260 int slot_index, bit_index, table_index; local
263 for (slot_index = 0; slot_index < num_slots && table_index < table_size;
264 slot_index++) {
269 if ((mask->bits[slot_index] & bit_mask) != 0) {
  /external/v8/src/ast/
context-slot-cache.cc 48 int slot_index) {
51 DCHECK(slot_index > kNotFound);
60 Value(mode, init_flag, maybe_assigned_flag, slot_index - kNotFound)
63 ValidateEntry(data, name, mode, init_flag, maybe_assigned_flag, slot_index);
78 int slot_index) {
91 DCHECK(result.index() + kNotFound == slot_index);
context-slot-cache.h 29 MaybeAssignedFlag maybe_assigned_flag, int slot_index);
50 MaybeAssignedFlag maybe_assigned_flag, int slot_index);
  /external/curl/lib/
hash.c 287 iter->slot_index = 0;
303 for(i = iter->slot_index; i < h->slots; i++) {
306 iter->slot_index = i + 1;
337 if(iter.slot_index != last_index) {
338 fprintf(stderr, "index %d:", iter.slot_index);
342 last_index = iter.slot_index;
hash.h 68 int slot_index; member in struct:curl_hash_iterator
  /external/v8/src/
contexts.cc 45 int slot_index = ScopeInfo::ContextSlotIndex( local
49 if (slot_index >= 0) {
51 result->slot_index = slot_index;
251 *index = r.slot_index;
315 int slot_index = ScopeInfo::ContextSlotIndex(scope_info, name, &mode, local
317 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
318 if (slot_index >= 0) {
321 slot_index, mode)
    [all...]
deoptimizer.h 332 static uint32_t GetUInt32Slot(Address fp, int slot_index);
333 static Float32 GetFloatSlot(Address fp, int slot_index);
334 static Float64 GetDoubleSlot(Address fp, int slot_index);
    [all...]
code-stub-assembler.h 445 Node* LoadContextElement(Node* context, int slot_index);
446 Node* LoadContextElement(Node* context, Node* slot_index);
447 Node* StoreContextElement(Node* context, int slot_index, Node* value);
448 Node* StoreContextElement(Node* context, Node* slot_index, Node* value);
449 Node* StoreContextElementNoWriteBarrier(Node* context, int slot_index,
    [all...]
code-stubs.h 1449 int slot_index() const { return SlotIndexBits::decode(minor_key_); } function in class:v8::ScriptContextFieldStub
    [all...]
code-stubs.cc     [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.cc 531 Register context, int slot_index, int depth,
535 OutputLdaImmutableCurrentContextSlot(slot_index);
538 OutputLdaCurrentContextSlot(slot_index);
541 OutputLdaImmutableContextSlot(context, slot_index, depth);
544 OutputLdaContextSlot(context, slot_index, depth);
550 int slot_index,
553 OutputStaCurrentContextSlot(slot_index);
555 OutputStaContextSlot(context, slot_index, depth);
573 const AstRawString* name, TypeofMode typeof_mode, int slot_index,
577 OutputLdaLookupContextSlotInsideTypeof(name_index, slot_index, depth)
    [all...]
interpreter.cc 617 // LdaContextSlot <context> <slot_index> <depth>
619 // Load the object in |slot_index| of the context at |depth| in the context
624 Node* slot_index = __ BytecodeOperandIdx(1); local
627 Node* result = __ LoadContextElement(slot_context, slot_index);
632 // LdaImmutableContextSlot <context> <slot_index> <depth>
634 // Load the object in |slot_index| of the context at |depth| in the context
641 // LdaCurrentContextSlot <slot_index>
643 // Load the object in |slot_index| of the current context into the accumulator.
645 Node* slot_index = __ BytecodeOperandIdx(0); local
647 Node* result = __ LoadContextElement(slot_context, slot_index);
669 Node* slot_index = __ BytecodeOperandIdx(1); local
682 Node* slot_index = __ BytecodeOperandIdx(0); local
718 Node* slot_index = __ BytecodeOperandIdx(1); local
1119 Node* slot_index = __ BytecodeOperandIdx(1); local
1133 Node* slot_index = __ BytecodeOperandIdx(1); local
1375 Node* slot_index = __ BytecodeOperandIdx(1); local
1436 slot_index); local
1504 Node* slot_index = __ BytecodeOperandIdx(2); local
1523 feedback_vector, slot_index); local
1558 Node* slot_index = __ BytecodeOperandIdx(2); local
1577 feedback_vector, slot_index); local
1609 Node* slot_index = __ BytecodeOperandIdx(2); local
1622 feedback_vector, slot_index); local
1636 Node* slot_index = __ BytecodeOperandIdx(2); local
1649 feedback_vector, slot_index); local
1664 Node* slot_index = __ BytecodeOperandIdx(2); local
1678 feedback_vector, slot_index); local
1693 Node* slot_index = __ BytecodeOperandIdx(2); local
1707 feedback_vector, slot_index); local
1724 Node* slot_index = __ BytecodeOperandIdx(0); local
1773 Node* slot_index = __ BytecodeOperandIdx(0); local
1911 Node* slot_index = __ BytecodeOperandIdx(0); local
    [all...]
bytecode-array-builder.h 95 // Load the object at |slot_index| at |depth| in the context chain starting
98 BytecodeArrayBuilder& LoadContextSlot(Register context, int slot_index,
102 // Stores the object in the accumulator into |slot_index| at |depth| in the
104 BytecodeArrayBuilder& StoreContextSlot(Register context, int slot_index,
173 // Lookup the variable with |name|, which is known to be at |slot_index| at
178 int slot_index, int depth);
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_query.c 380 int slot_index = -1; local
399 slot_index = allocate_query_slot(svga, alloc_entry);
401 if (slot_index == -1) {
408 slot_index = allocate_query_slot(svga, alloc_entry);
411 assert(slot_index != -1);
412 offset = slot_index * len + alloc_entry->start_offset;
426 unsigned slot_index; local
436 slot_index = (offset - alloc_entry->start_offset) /
438 deallocate_query_slot(svga, alloc_entry, slot_index);
    [all...]
  /external/v8/src/objects/
scope-info.h 156 String* ContextSlotName(int slot_index);
scope-info.cc 680 String* ScopeInfo::ContextSlotName(int slot_index) {
681 int const var = slot_index - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/autotest/client/bin/input/
input_device.py 319 for slot_index in range(self.num_slots):
320 slot_id = self._convert_slot_index_to_slot_id(slot_index)
321 self.mt_slots[slot_index][c].value = values[slot_id]
589 for slot_index in range(self.num_slots):
590 slot = self.mt_slots[slot_index]
593 slot_id = self._convert_slot_index_to_slot_id(slot_index)
  /toolchain/binutils/binutils-2.27/cpu/
frv.opc 850 int slot_index;
858 slot_index = vliw->next_slot;
859 if (slot_index >= FRV_VLIW_SIZE)
886 if (slot_index <= 0)
906 vliw->major[slot_index] = major;
907 vliw->insn[slot_index] = insn;
    [all...]
  /tools/test/connectivity/acts/tests/google/tel/live/
TelLiveRebootStressTest.py 555 slot_index = get_slot_index_from_subid(self.log, self.dut, sub_id)
556 if not power_off_sim(self.dut, slot_index):
559 if not power_on_sim(self.dut, slot_index):
    [all...]
TelLiveSettingsTest.py     [all...]
  /hardware/intel/img/psb_video/src/
tng_hostcode.c 878 int slot_index = 0; local
    [all...]
  /external/v8/src/compiler/
js-call-reducer.cc 599 Node* slot_index = local
604 node->InsertInput(graph()->zone(), 3, slot_index);
    [all...]
bytecode-graph-builder.cc 931 uint32_t slot_index = bytecode_iterator().GetIndexOperand(1); local
1564 int slot_index = bytecode_iterator().GetIndexOperand(1); local
    [all...]

Completed in 638 milliseconds

1 2 3