HomeSort by relevance Sort by last modified time
    Searched defs:slot (Results 151 - 175 of 262) sorted by null

1 2 3 4 5 67 8 91011

  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 369 int slot = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); local
374 MVT::v4f32, DAG.getTargetConstant(slot / 4 , MVT::i32));
376 TII->getRegisterInfo().getSubRegFromChannel(slot % 4),
380 if (slot % 4 < 2)
382 MVT::f32, MVT::f32, DAG.getTargetConstant(slot / 4 , MVT::i32),
389 MVT::f32, MVT::f32, DAG.getTargetConstant(slot / 4 , MVT::i32),
395 return SDValue(interp, slot % 2);
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyReader.java 161 int slot = s3 & 0xff; local
163 handler.synStream(flags, streamId, associatedStreamId, priority, slot, nameValueBlock);
302 void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot,
  /external/qemu/hw/
pci.c 166 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error
174 unsigned slot = 0; local
199 slot = val;
210 *slotp = slot;
387 /* the ROM slot has a specific enable bit */
866 PCIDevice *pci_find_device(int bus_num, int slot, int function)
873 return bus->devices[PCI_DEVFN(slot, function)];
  /external/qemu/
kvm-all.c 47 int slot; member in struct:KVMSlot
82 fprintf(stderr, "%s: no free slot available\n", __func__);
105 * Find overlapping slot with lowest start address
131 static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot)
135 mem.slot = slot->slot;
136 mem.guest_phys_addr = slot->start_addr;
137 mem.memory_size = slot->memory_size;
138 mem.userspace_addr = (unsigned long)qemu_get_ram_ptr(slot->phys_offset)
    [all...]
  /external/tcpdump/
print-wb.c 153 u_int32_t slot; member in struct:pgstate
197 EXTRACT_32BITS(&id->pi_ps.slot),
275 EXTRACT_32BITS(&ps->slot),
  /external/v8/src/
incremental-marking.cc 65 Object** slot,
67 if (BaseRecordWrite(obj, slot, value) && is_compacting_ && slot != NULL) {
70 // Object is not going to be rescanned we need to record the slot.
72 HeapObject::RawField(obj, 0), slot, value); local
98 Object** slot,
102 marking->RecordWrite(obj, slot, *slot);
127 Object** slot,
129 if (BaseRecordWrite(host, slot, value) && is_compacting_)
636 Object** slot = local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp 124 bool ArrayPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
126 return getStaticFunctionSlot<JSArray>(exec, ExecState::arrayTable(exec), this, propertyName, slot);
139 PropertySlot slot(obj);
140 if (!obj->getPropertySlot(exec, index, slot))
142 return slot.getValue(exec, index);
147 PutPropertySlot slot; local
148 obj->put(exec, propertyName, value, slot);
688 PropertySlot slot(thisObj);
689 if (!thisObj->getPropertySlot(exec, k, slot))
691 JSValue v = slot.getValue(exec, k)
    [all...]
JSONObject.cpp 521 PropertySlot slot(m_object.get());
522 if (!m_object->getOwnPropertySlot(exec, index, slot))
523 slot.setUndefined();
526 value = slot.getValue(exec, index);
538 PropertySlot slot(m_object.get());
540 if (!m_object->getOwnPropertySlot(exec, propertyName, slot))
542 JSValue value = slot.getValue(exec, propertyName);
597 bool JSONObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
599 return getStaticFunctionSlot<JSObject>(exec, ExecState::jsonTable(exec), this, propertyName, slot);
686 PropertySlot slot; local
748 PropertySlot slot; local
768 PutPropertySlot slot; local
803 PutPropertySlot slot; local
    [all...]
JSObject.h 79 friend void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot);
112 virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot);
115 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot);
481 ALWAYS_INLINE bool JSObject::inlineGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
485 fillGetterPropertySlot(slot, location);
487 slot.setValue(this, location->get(), offsetForLocation(location));
493 slot.setValue(prototype());
503 ALWAYS_INLINE bool JSObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
505 return inlineGetOwnPropertySlot(exec, propertyName, slot);
508 ALWAYS_INLINE bool JSCell::fastGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
682 PutPropertySlot slot; local
696 PutPropertySlot slot; local
712 PutPropertySlot slot; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Script.java 39 KernelID(int id, RenderScript rs, Script s, int slot, int sig) {
42 mSlot = slot;
51 protected KernelID createKernelID(int slot, int sig, Element ein, Element eout) {
52 KernelID k = mKIDs.get(slot);
57 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
62 k = new KernelID(id, mRS, this, slot, sig);
63 mKIDs.put(slot, k);
78 FieldID(int id, RenderScript rs, Script s, int slot) {
81 mSlot = slot;
89 protected FieldID createFieldID(int slot, Element e)
111 mRS.nScriptInvoke(getID(mRS), slot); local
120 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); local
122 mRS.nScriptInvoke(getID(mRS), slot); local
147 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params); local
176 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend); local
191 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); local
193 mRS.nScriptBindAllocation(getID(mRS), 0, slot); local
    [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 174 int slot = item->mBuf; local
178 if (mEglSlots[slot].mEglImage != EGL_NO_IMAGE_KHR) {
179 if (!eglDestroyImageKHR(mEglDisplay, mEglSlots[slot].mEglImage)) {
180 ST_LOGW("acquireBufferLocked: eglDestroyImageKHR failed for slot=%d",
181 slot);
184 mEglSlots[slot].mEglImage = EGL_NO_IMAGE_KHR;
219 // buffer currently in the slot in ConsumerBase.
228 ST_LOGW("releaseAndUpdate: unable to createImage on display=%p slot=%d",
235 // Do whatever sync ops we need to do before releasing the old slot.
244 ST_LOGV("releaseAndUpdate: (slot=%d buf=%p) -> (slot=%d buf=%p)"
    [all...]
  /frameworks/rs/
rs_hal.h 74 uint32_t slot; member in struct:android::renderscript::__anon20275
105 uint32_t slot,
111 uint32_t slot,
121 uint32_t slot,
125 uint32_t slot,
129 uint32_t slot,
136 uint32_t slot,
139 uint32_t slot,
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Script.java 46 KernelID(int id, RenderScript rs, Script s, int slot, int sig) {
49 mSlot = slot;
59 * @param slot
66 protected KernelID createKernelID(int slot, int sig, Element ein, Element eout) {
67 KernelID k = mKIDs.get(slot);
75 k = new KernelID(0, mRS, this, slot, sig);
77 k.mN = mT.thunkCreateKernelID(slot, sig, ein, eout);
79 mKIDs.put(slot, k);
84 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
89 k = new KernelID(id, mRS, this, slot, sig)
162 mRS.nScriptInvoke(getID(mRS), slot); local
178 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); local
180 mRS.nScriptInvoke(getID(mRS), slot); local
198 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); local
200 mRS.nScriptBindAllocation(getID(mRS), 0, slot); local
249 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params); local
288 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend); local
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Field.java 74 private int slot; field in class:Field
98 this(orig.declaringClass, orig.type, orig.name, orig.slot);
106 private Field(Class<?> declaringClass, Class<?> type, String name, int slot) {
110 this.slot = slot;
130 Object[] annotation = getSignatureAnnotation(declaringClass, slot);
142 native private Object[] getSignatureAnnotation(Class declaringClass, int slot);
150 int flags = getFieldModifiers(declaringClass, slot);
182 int flags = getFieldModifiers(declaringClass, slot);
204 return getDeclaredAnnotations(declaringClass, slot);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 40 // file. The offset is 0 when the slot is free. Note that 0 is a valid value
543 // The slot offset in the index file is saved in mSlotOffset. If the lookup
544 // is successful, it's the slot found. Otherwise it's the slot suitable for
551 int slot = (int) (key % mMaxEntries); local
552 if (slot < 0) slot += mMaxEntries;
553 int slotBegin = slot;
555 int offset = hashStart + slot * 12;
566 if (++slot >= mMaxEntries)
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
BlobCache.java 40 // file. The offset is 0 when the slot is free. Note that 0 is a valid value
529 // The slot offset in the index file is saved in mSlotOffset. If the lookup
530 // is successful, it's the slot found. Otherwise it's the slot suitable for
537 int slot = (int) (key % mMaxEntries); local
538 if (slot < 0) slot += mMaxEntries;
539 int slotBegin = slot;
541 int offset = hashStart + slot * 12;
552 if (++slot >= mMaxEntries)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow.h 96 PTR *slot; member in struct:__anon22662
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow.h 96 PTR *slot; member in struct:__anon23391
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow.h 96 PTR *slot; member in struct:__anon24222
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow.h 96 PTR *slot; member in struct:__anon24951
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
edd.h 92 __u8 slot; member in struct:edd_device_params::__anon26366::__anon26368
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
edd.h 92 __u8 slot; member in struct:edd_device_params::__anon27957::__anon27959
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
edd.h 92 __u8 slot; member in struct:edd_device_params::__anon29471::__anon29473
  /bionic/libc/kernel/common/linux/sunrpc/
xprt.h 125 struct rpc_rqst * slot; member in struct:rpc_xprt
  /development/ndk/platforms/android-3/include/linux/sunrpc/
xprt.h 117 struct rpc_rqst * slot; member in struct:rpc_xprt

Completed in 1776 milliseconds

1 2 3 4 5 67 8 91011