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

1 2 3 45 6 7 8 91011

  /external/grub/stage2/
fsys_fat.c 306 int slot = -2; local
396 slot = id;
397 filename[slot * 13] = 0;
401 if (id != slot || slot == 0
408 slot--;
409 offset = slot * 13;
419 if (alias_checksum != -1 && slot == 0)
424 slot = -2;
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
FrameBuffer.java 87 * are attached to an attachment slot on a <code>FrameBuffer</code>.
94 int slot = -1; field in class:FrameBuffer.RenderBuffer
129 return slot;
210 depthBuf.slot = -100; // -100 == special slot for DEPTH_BUFFER
228 colorBuf.slot = 0;
257 * by using the <code>gl_FragData</code> array. Every slot in that
342 colorBuf.slot = colorBufs.size();
362 depthBuf.slot = -100; // indicates GL_DEPTH_ATTACHMENT
432 sb.append("Color(").append(colorBuf.slot)
    [all...]
  /external/kernel-headers/original/linux/
mca.h 19 /* This sets up an information callback for /proc/mca/slot?. The
20 * function is called with the buffer, slot, and device pointer (or
30 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
47 int slot; member in struct:mca_device
102 extern struct mca_device *mca_find_device_by_slot(int slot);
135 extern void mca_set_adapter_procfn(int slot, MCA_ProcFn, void* dev);
141 static inline void mca_set_adapter_procfn(int slot, MCA_ProcFn fn, void* dev)
  /external/libppp/src/
ether.c 107 u_int32_t slot; /* ifindex << 24 | unit */ member in struct:etherdevice
188 return dev->slot;
224 u_long slot; local
282 slot = strtoul(sessionid, &end, 16);
284 dev->slot = slot;
678 dev->slot = GetIfIndex(path);
717 * set in the environment. If so, use it as the slot
721 u_long slot; local
723 slot = strtoul(sessionid, &end, 16)
    [all...]
tty.c 561 int slot; local
564 for (slot = 1; (ttyp = getttyent()); ++slot)
567 return slot;
  /external/mdnsresponder/mDNSPosix/
Identify.c 362 mDNSu32 slot; local
365 FORALL_CACHERECORDS(slot, cg, rr) mDNS_PurgeCacheResourceRecord(m, rr);
  /external/skia/legacy/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
54 Slot(const char name[], Type type) {
55 LEAK_CODE(SkDebugf(" slot[%d]\n", gSlotCount++);)
70 ~Slot();
75 Slot* fNext;
87 SkJSON::Object::Slot::~Slot() {
102 LEAK_CODE(SkASSERT(gSlotCount > 0); SkDebugf("~slot[%d]\n", --gSlotCount);)
200 Slot* slot = fHead local
272 const Slot* slot = this->findSlot(name, kObject); local
283 const Slot* slot = this->findSlot(name, kArray); local
294 const Slot* slot = this->findSlot(name, kString); local
305 const Slot* slot = this->findSlot(name, kInt); local
316 const Slot* slot = this->findSlot(name, kFloat); local
327 const Slot* slot = this->findSlot(name, kBool); local
340 Slot* slot = fHead; local
    [all...]
  /external/skia/legacy/src/views/
SkEvent.cpp 99 size_t slot = 0; local
100 memcpy(&slot, type, typeLen);
101 if (slot << 1 >> 1 != slot)
103 slot <<= 1;
104 slot |= 1;
105 fType = (char*) slot;
  /external/skia/src/core/
SkOrderedWriteBuffer.cpp 162 int32_t slot = fBitmapHeap->insert(bitmap); local
163 fWriter.write32(slot);
168 // and the instance currently being written is re-using the same slot from the
  /external/skia/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
54 Slot(const char name[], Type type) {
55 LEAK_CODE(SkDebugf(" slot[%d]\n", gSlotCount++);)
70 ~Slot();
75 Slot* fNext;
87 SkJSON::Object::Slot::~Slot() {
102 LEAK_CODE(SkASSERT(gSlotCount > 0); SkDebugf("~slot[%d]\n", --gSlotCount);)
200 Slot* slot = fHead local
272 const Slot* slot = this->findSlot(name, kObject); local
283 const Slot* slot = this->findSlot(name, kArray); local
294 const Slot* slot = this->findSlot(name, kString); local
305 const Slot* slot = this->findSlot(name, kInt); local
316 const Slot* slot = this->findSlot(name, kFloat); local
327 const Slot* slot = this->findSlot(name, kBool); local
340 Slot* slot = fHead; local
    [all...]
  /external/skia/src/views/
SkEvent.cpp 99 size_t slot = 0; local
100 memcpy(&slot, type, typeLen);
101 if (slot << 1 >> 1 != slot)
103 slot <<= 1;
104 slot |= 1;
105 fType = (char*) slot;
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 96 HandleSlot slot = exec->globalData().allocateGlobalHandle(); local
97 HandleHeap::heapFor(slot)->makeWeak(slot, m_callbackObjectData.get(), classRef());
98 HandleHeap::heapFor(slot)->writeBarrier(slot, this);
99 *slot = this;
114 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
127 slot.setCustom(this, callbackGetter);
141 slot.setValue(jsUndefined());
145 slot.setValue(toJS(exec, value))
171 PropertySlot slot; local
    [all...]
JSObjectRef.cpp 279 PutPropertySlot slot; local
280 jsObject->put(exec, name, jsValue, slot);
  /external/webkit/Source/JavaScriptCore/runtime/
JSArray.cpp 243 bool JSArray::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot)
249 return getOwnPropertySlot(exec, Identifier::from(exec, i), slot);
256 slot.setValue(value);
263 slot.setValue(it->second.get());
269 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, i), slot);
272 bool JSArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
275 slot.setValue(jsNumber(length()));
282 return JSArray::getOwnPropertySlot(exec, i, slot);
284 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
321 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
379 PutPropertySlot slot; local
    [all...]
JSGlobalObject.cpp 118 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
124 JSVariableObject::put(exec, propertyName, value, slot);
135 PutPropertySlot slot; local
136 JSVariableObject::put(exec, propertyName, value, slot);
146 PropertySlot slot; local
147 if (!symbolTableGet(propertyName, slot))
153 PropertySlot slot; local
154 if (!symbolTableGet(propertyName, slot))
Lookup.h 190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
195 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
198 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
200 slot.setCacheableCustom(thisObj, entry->propertyGetter());
213 PropertySlot slot;
215 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
217 slot.setCustom(thisObj, entry->propertyGetter());
219 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
229 inline bool getStaticFunctionSlot(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
231 if (static_cast<ParentImp*>(thisObj)->ParentImp::getOwnPropertySlot(exec, propertyName, slot))
294 PropertySlot slot; local
    [all...]
ObjectConstructor.cpp 87 bool ObjectConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
89 return getStaticFunctionSlot<JSObject>(exec, ExecState::objectConstructorTable(exec), this, propertyName, slot);
305 PropertySlot slot; local
RegExpConstructor.cpp 146 PutPropertySlot slot; local
147 JSArray::put(exec, exec->propertyNames().index, jsNumber(d->lastOvector()[0]), slot);
148 JSArray::put(exec, exec->propertyNames().input, jsString(exec, d->input), slot);
195 bool RegExpConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
197 return getStaticValueSlot<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, slot);
280 void RegExpConstructor::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
282 lookupPut<RegExpConstructor, InternalFunction>(exec, propertyName, value, ExecState::regExpConstructorTable(exec), this, slot);
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 347 PutPropertySlot slot; local
348 obj->imp->put(exec, identifierFromNPIdentifier(exec, i->string()), convertNPVariantToValue(exec, variant, rootObject), slot);
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 421 HashMap<AtomicStringImpl*, CSSSelector::PseudoType>::iterator slot = nameToPseudoType->find(name.impl()); local
422 return slot == nameToPseudoType->end() ? PseudoUnknown : slot->second;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 191 PutPropertySlot slot; local
192 m_jsObject->put(exec, identifierFromIdentifierRep(exec, identifierRep), jsValue, slot);
  /external/webkit/Tools/android/flex-2.5.4a/
tblcmp.c 576 * address below; find the next free slot.
633 /* Find next free slot in tables. */
675 int i, slot, tblbase; local
682 slot = lastprot;
688 slot = numprots;
690 protnext[slot] = firstprot;
693 protprev[firstprot] = slot;
695 firstprot = slot;
696 prottbl[slot] = statenum;
697 protcomst[slot] = comstate
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Program.java 94 * @param slot index of the constant input type to return
97 public Type getConstant(int slot) {
98 if (slot < 0 || slot >= mConstants.length) {
99 throw new IllegalArgumentException("Slot ID out of range.");
101 return mConstants[slot];
113 * Returns the type of texture at a given slot. e.g. 2D or Cube
114 * @param slot index of the texture input
117 public TextureType getTextureType(int slot) {
118 if ((slot < 0) || (slot >= mTextureCount))
154 mRS.nProgramBindConstants(getID(mRS), slot, id); local
176 mRS.nProgramBindTexture(getID(mRS), slot, id); local
196 mRS.nProgramBindSampler(getID(mRS), slot, id); local
    [all...]
  /frameworks/base/libs/hwui/
Caches.cpp 397 GLuint slot = currentProgram->position; local
398 glVertexAttribPointer(slot, 2, GL_FLOAT, GL_FALSE, stride, vertices);
406 GLuint slot = currentProgram->texCoords; local
407 glVertexAttribPointer(slot, 2, GL_FLOAT, GL_FALSE, stride, vertices);
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 168 uint32_t slot = 0; local
171 E = mRSContext->export_vars_end(); I != E; I++, slot++) {
190 slot = 0;
192 E = mRSContext->export_vars_end(); I != E; I++, slot++) {
312 uint32_t slot = 0; local
315 E = mRSContext->export_foreach_end(); I != E; I++, slot++) {
357 tmp << " forEach(" << slot << ", "; local
378 slot = 0;
399 ss << " invoke(" << slot; local
410 slot++
488 uint32_t slot = getNextExportVarSlot(); local
494 tmp << slot; local
    [all...]

Completed in 2901 milliseconds

1 2 3 45 6 7 8 91011