HomeSort by relevance Sort by last modified time
    Searched refs:slot (Results 101 - 125 of 1462) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
macro-warn-3.l 3 .*:7: Warning: macro instruction expanded into multiple instructions.*slot
macro-warn-4.l 3 .*:5: Warning: macro instruction expanded into multiple instructions.*slot
macro-warn-1.l 6 .*:16: Warning: macro instruction expanded into multiple instructions.*slot
7 .*:18: Warning: macro instruction expanded into multiple instructions.*slot
8 .*:20: Warning: macro instruction expanded into multiple instructions.*slot
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
VersionStorage.java 39 * Copies content from the given slot in |out| and returns true.
41 * @param slot slot number to retrieve
42 * @param out array to copy the slot data to.
46 public short getSlot(byte slot, byte[] out, short oOffset) {
47 if (slot > NUM_SLOTS - 1) {
51 Util.arrayCopy(storage, (short)(SLOT_BYTES * slot),
60 * Copies content for the given slot from |in| and returns true.
62 * @param slot slot number to retriev
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
buffer_hub_queue_client.h 91 int GetBufferId(size_t slot) const {
92 return (slot < buffers_.size() && buffers_[slot]) ? buffers_[slot]->id()
96 std::shared_ptr<BufferHubBuffer> GetBuffer(size_t slot) const {
97 return buffers_[slot];
146 size_t slot);
150 virtual pdx::Status<void> RemoveBuffer(size_t slot);
162 size_t* slot);
167 pdx::Status<void> HandleBufferEvent(size_t slot, int event_fd
191 size_t slot; member in struct:android::dvr::BufferHubQueue::Entry
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Script.java 70 KernelID(long id, RenderScript rs, Script s, int slot, int sig) {
73 mSlot = slot;
83 * @param slot
90 protected KernelID createKernelID(int slot, int sig, Element ein, Element eout) {
91 KernelID k = mKIDs.get(slot);
96 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig, mUseIncSupp);
101 k = new KernelID(id, mRS, this, slot, sig);
103 mKIDs.put(slot, k);
118 InvokeID(long id, RenderScript rs, Script s, int slot) {
121 mSlot = slot;
195 mRS.nScriptInvoke(getID(mRS), slot, mUseIncSupp); local
206 mRS.nScriptInvokeV(getID(mRS), slot, v.getData(), mUseIncSupp); local
208 mRS.nScriptInvoke(getID(mRS), slot, mUseIncSupp); local
221 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot, mUseIncSupp); local
223 mRS.nScriptBindAllocation(getID(mRS), 0, slot, mUseIncSupp); local
267 mRS.nScriptForEach(getID(mRS), slot, ainInc, aoutInc, params, mUseIncSupp); local
269 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params, mUseIncSupp); local
308 mRS.nScriptForEachClipped(getID(mRS), slot, ainInc, aoutInc, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend, mUseIncSupp); local
310 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend, mUseIncSupp); local
382 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); local
422 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); local
    [all...]
  /system/update_engine/
boot_control_android.cc 73 BootControlInterface::Slot BootControlAndroid::GetCurrentSlot() const {
78 Slot slot,
81 // doesn't list every slot partition (it uses the slotselect option
89 // |partition_name| and suffix corresponding to |slot|, e.g.
113 Return<void> ret = module_->getSuffix(slot, store_suffix_cb);
116 LOG(ERROR) << "boot_control impl returned no suffix for slot "
117 << SlotName(slot);
131 bool BootControlAndroid::IsSlotBootable(Slot slot) const
    [all...]
  /external/deqp/framework/delibs/depool/
dePoolSet.h 68 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \
73 TYPENAME##Slot* nextSlot; \
83 TYPENAME##Slot** slotTable; \
84 TYPENAME##Slot* slotFreeList; \
91 const TYPENAME##Slot* curSlot; \
228 TYPENAME##Slot* slot = set->slotTable[slotNdx]; \
229 while (slot) \
231 TYPENAME##Slot* nextSlot = slot->nextSlot;
    [all...]
  /hardware/interfaces/boot/1.0/default/
BootControl.cpp 51 Return<void> BootControl::setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) {
52 int ret = mModule->setActiveBootSlot(mModule, slot);
60 Return<void> BootControl::setSlotAsUnbootable(uint32_t slot, setSlotAsUnbootable_cb _hidl_cb) {
61 int ret = mModule->setSlotAsUnbootable(mModule, slot);
69 Return<BoolResult> BootControl::isSlotBootable(uint32_t slot) {
70 int32_t ret = mModule->isSlotBootable(mModule, slot);
77 Return<BoolResult> BootControl::isSlotMarkedSuccessful(uint32_t slot) {
78 int32_t ret = mModule->isSlotMarkedSuccessful(mModule, slot);
85 Return<void> BootControl::getSuffix(uint32_t slot, getSuffix_cb _hidl_cb) {
87 const char *suffix = mModule->getSuffix(mModule, slot);
    [all...]
BootControl.h 44 Return<void> setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) override;
45 Return<void> setSlotAsUnbootable(uint32_t slot, setSlotAsUnbootable_cb _hidl_cb) override;
46 Return<BoolResult> isSlotBootable(uint32_t slot) override;
47 Return<BoolResult> isSlotMarkedSuccessful(uint32_t slot) override;
48 Return<void> getSuffix(uint32_t slot, getSuffix_cb _hidl_cb) override;
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_shader.h 151 /* NOTE: for input/outputs, slot is:
160 uint8_t slot; member in struct:ir3_shader_variant::__anon29536
170 uint8_t slot; member in struct:ir3_shader_variant::__anon29537
181 bool sysval : 1; /* slot is a gl_system_value */
293 ir3_find_output(const struct ir3_shader_variant *so, gl_varying_slot slot)
298 if (so->outputs[j].slot == slot)
308 if (slot == VARYING_SLOT_BFC0) {
309 slot = VARYING_SLOT_COL0;
310 } else if (slot == VARYING_SLOT_BFC1)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 66 MergeSlot slot = new MergeSlot(list, i); local
67 if (slot.next()) mQueue.add(slot);
132 MergeSlot slot = nextMergeSlot(); local
133 if (slot == null) return null;
135 IImage result = slot.mImage;
136 if (slot.next()) mQueue.add(slot);
139 if (slot.next()) mQueue.add(slot);
144 MergeSlot slot = mQueue.poll(); local
231 MergeSlot slot = nextMergeSlot(); local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Script.java 39 KernelID(long id, RenderScript rs, Script s, int slot, int sig) {
42 mSlot = slot;
51 protected KernelID createKernelID(int slot, int sig, Element ein,
53 KernelID k = mKIDs.get(slot);
58 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
63 k = new KernelID(id, mRS, this, slot, sig);
64 mKIDs.put(slot, k);
79 InvokeID(long id, RenderScript rs, Script s, int slot) {
82 mSlot = slot;
90 protected InvokeID createInvokeID(int slot) {
150 mRS.nScriptInvoke(getID(mRS), slot); local
159 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); local
161 mRS.nScriptInvoke(getID(mRS), slot); local
218 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); local
283 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); local
322 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); local
367 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); local
369 mRS.nScriptBindAllocation(getID(mRS), 0, slot); local
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_client.cpp 189 "slot=%d|",
213 Status<void> BufferHubQueue::HandleBufferEvent(size_t slot, int event_fd,
216 if (!buffers_[slot]) {
217 ALOGW("BufferHubQueue::HandleBufferEvent: Invalid buffer slot: %zu", slot);
221 auto status = buffers_[slot]->GetEventMask(poll_events);
230 "buffer|queue_id=%d;buffer_id=%d;slot=%zu;event_fd=%d;poll_events=%x;"
232 id(), buffers_[slot]->id(), slot, event_fd, poll_events, events);
235 return Enqueue({buffers_[slot], slot, buffers_[slot]->GetQueueIndex()})
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuExecutable.h 151 void* getFieldAddress(int slot) const { return mFieldAddress[slot]; }
153 bool getFieldIsObject(int slot) const { return mFieldIsObject[slot]; }
154 const char* getFieldName(int slot) const { return mFieldName[slot]; }
156 InvokeFunc_t getInvokeFunction(int slot) const { return mInvokeFunctions[slot]; }
158 ForEachFunc_t getForEachFunction(int slot) const { return mForEachFunctions[slot]; }
    [all...]
rsCpuScript.h 47 void invokeFunction(uint32_t slot, const void *params, size_t paramLength) override;
49 virtual void preLaunch(uint32_t slot, const Allocation ** ains,
52 virtual void postLaunch(uint32_t slot, const Allocation ** ains,
57 void invokeForEach(uint32_t slot,
65 void invokeReduce(uint32_t slot,
73 void setGlobalVar(uint32_t slot, const void *data, size_t dataLength) override;
74 void getGlobalVar(uint32_t slot, void *data, size_t dataLength) override;
75 void setGlobalVarWithElemDims(uint32_t slot, const void *data, size_t dataLength,
78 void setGlobalBind(uint32_t slot, Allocation *data) override;
79 void setGlobalObj(uint32_t slot, ObjectBase *data) override
    [all...]
  /system/extras/tests/bootloader/
haltest.py 34 for slot in range(num_slots):
35 suffix = self.bootctl.get_suffix(slot)
37 suffixes[suffix] = slot
43 Ensure that mark_successful will mark the slot as
45 slot-successful by setting the active slot to the current one."""
49 slot = self.bootctl.get_current_slot()
50 self.assertTrue(self.bootctl.set_active_boot_slot(slot))
51 self.assertFalse(self.bootctl.is_slot_marked_successful(slot))
53 self.assertTrue(self.bootctl.is_slot_marked_successful(slot))
    [all...]
  /art/test/ti-agent/
locals_helper.cc 50 jint slot,
52 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalObject(t, depth, slot, val));
59 jint slot,
61 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalDouble(t, depth, slot, val));
68 jint slot,
70 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalFloat(t, depth, slot, val));
77 jint slot,
79 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalLong(t, depth, slot, val));
86 jint slot,
88 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalInt(t, depth, slot, val))
    [all...]
  /external/elfutils/lib/
fixedsizehash.h 175 struct CONCAT(PREFIX,fshashent) *slot;
177 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
178 if (slot->hval != 0)
182 slot->hval = hval;
184 slot->entry = data;
186 slot->entry = *data;
199 struct CONCAT(PREFIX,fshashent) *slot;
201 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
202 if (slot->hval != 0)
206 slot->hval = hval
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidHashMapTest.java 120 int slot = 0; local
123 slot = 0;
125 slot = 1;
127 slot = 2;
129 slot = 3;
134 if (slots[slot]) {
137 slots[slot] = true;
155 int slot = 0; local
158 slot = 0;
160 slot = 1
190 int slot = 0; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_program.c 276 unsigned slot = num_outputs++; local
278 stvp->result_to_output[attr] = slot;
279 output_slot_to_attr[slot] = attr;
283 output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
284 output_semantic_index[slot] = 0;
287 output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
288 output_semantic_index[slot] = 0;
291 output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
292 output_semantic_index[slot] = 1;
295 output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR
621 const GLuint slot = fs_num_inputs++; local
1230 const GLuint slot = num_inputs++; local
1307 GLuint slot = num_inputs++; local
1329 GLuint slot = num_outputs++; local
1431 GLuint slot = num_outputs++; local
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/tests/
buffer_hub_queue_producer-test.cpp 132 // Slot number should be in boundary.
239 int slot = -1; local
242 ASSERT_NO_FATAL_FAILURE(DequeueBuffer(&slot));
246 ASSERT_EQ(NO_ERROR, mProducer->requestBuffer(slot, &buffer));
253 ASSERT_EQ(NO_ERROR, mProducer->queueBuffer(slot, input, &output));
267 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(slot, input, &output));
270 // Test invalid slot number
278 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(/*slot*/ -1, input, &output));
280 mProducer->queueBuffer(/*slot*/ 0xDEADBEEF, input, &output));
285 // Slot was not in the dequeued state (all slots start out in Free state
297 int slot = -1; local
310 int slot = -1; local
329 int slot = -1; local
350 int slot = -1; local
368 int slot = -1; local
397 int slot = -1; local
445 int slot = -1; local
463 int slot = -1; local
474 int slot = -1; local
487 int slot = -1; local
505 int slot = -1; local
518 int slot = -1; local
    [all...]
  /frameworks/rs/driver/
rsdVertexArray.cpp 65 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
69 ALOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%p",
70 idx, slot,
99 int32_t slot = sc->vtxAttribSlot(mAttribs[ct].name); local
101 logAttrib(ct, slot);
103 if (slot < 0 || slot >= (int32_t)maxAttrs) {
106 glEnableVertexAttribArray(slot);
107 state->mAttrsEnabled[slot] = true;
109 glVertexAttribPointer(slot,
    [all...]
  /external/lzma/C/
BraIA64.c 27 int slot; local
28 for (slot = 0; slot < 3; slot++, bitPos += 41)
33 if (((mask >> slot) & 1) == 0)
  /external/strace/
kcmp.c 76 struct strace_kcmp_epoll_slot slot; local
82 if (umove_or_printaddr(tcp, idx2, &slot))
85 PRINT_FIELD_PIDFD("{", slot, efd, tcp, pid2);
86 PRINT_FIELD_PIDFD(", ", slot, tfd, tcp, pid2);
87 PRINT_FIELD_U(", ", slot, toff);

Completed in 428 milliseconds

1 2 3 45 6 7 8 91011>>