/external/emma/core/java12/com/vladium/jcd/cls/ |
ConstantCollection.java | 36 throw new IllegalStateException ("assertion failure: dereferencing an invalid constant pool slot " + index); 142 throw new IllegalStateException ("assertion failure: dereferencing an invalid constant pool slot " + index); 145 throw new IllegalArgumentException ("assertion failure: can't set entry of type [" + result.getClass ().getName () + "] to an entry of type [" + result.getClass ().getName () + "] at pool slot " + index); 235 throw new IllegalStateException ("assertion failure: dereferencing an invalid constant pool slot " + m_prev_index); 238 throw new IllegalArgumentException ("assertion failure: can't set entry of type [" + result.getClass ().getName () + "] to an entry of type [" + result.getClass ().getName () + "] at pool slot " + m_prev_index);
|
/external/v8/src/arm/ |
codegen-arm.cc | 179 // tos: code slot 226 Slot* slot = par->slot(); local 227 if (slot != NULL && slot->type() == Slot::CONTEXT) { 231 __ str(r1, SlotOperand(slot, r2)); 234 FixedArray::kHeaderSize + slot->index() * kPointerSize; 249 ASSERT(arguments != NULL && arguments->slot() != NULL) 1213 Slot* slot = var->slot(); local 3736 Slot* slot = variable->slot(); local 4371 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot(); local 4428 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot(); local [all...] |
/external/v8/src/x64/ |
codegen-x64.cc | 366 Slot* slot = par->slot(); local 367 if (slot != NULL && slot->type() == Slot::CONTEXT) { 369 // because the slot is guaranteed to be a context slot. 381 __ movq(SlotOperand(slot, context.reg()), value.reg()); 382 int offset = FixedArray::kHeaderSize + slot->index() * kPointerSize 933 Slot* slot = var->slot(); local 3005 Slot* slot = variable->slot(); local 6030 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot(); local 6151 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot(); local 6184 Slot* slot = expression_->AsVariableProxy()->AsVariable()->slot(); local [all...] |
virtual-frame-x64.cc | 375 // Store the value on top of the frame to the virtual frame slot at 397 // stored-to slot and the backing slot of the top element. 401 // 1. The top element is a copy of a slot below the stored-to 402 // slot. The stored-to slot becomes an unsynced copy of that 403 // same backing slot. 406 // 2. The top element is a copy of a slot above the stored-to 407 // slot. The stored-to slot becomes the new (unsynced) backin [all...] |
/external/webkit/WebKitTools/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...] |
/external/skia/src/views/ |
SkEvent.cpp | 120 size_t slot = 0; local 121 memcpy(&slot, type, typeLen); 122 if (slot << 1 >> 1 != slot) 124 slot <<= 1; 125 slot |= 1; 126 fType = (char*) slot;
|
/external/v8/src/ia32/ |
virtual-frame-ia32.cc | 675 // Store the value on top of the frame to the virtual frame slot at 697 // stored-to slot and the backing slot of the top element. 701 // 1. The top element is a copy of a slot below the stored-to 702 // slot. The stored-to slot becomes an unsynced copy of that 703 // same backing slot. 706 // 2. The top element is a copy of a slot above the stored-to 707 // slot. The stored-to slot becomes the new (unsynced) backin [all...] |
/frameworks/base/graphics/jni/ |
android_renderscript_RenderScript.cpp | 849 nScriptBindAllocation(JNIEnv *_env, jobject _this, jint script, jint alloc, jint slot) 852 LOG_API("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", con, (RsScript)script, (RsAllocation)alloc, slot); 853 rsScriptBindAllocation(con, (RsScript)script, (RsAllocation)alloc, slot); [all...] |
/dalvik/vm/interp/ |
Jit.c | 487 void setTraceConstruction(JitEntry *slot, bool value) 493 oldValue = slot->u; 496 } while (!ATOMIC_CMP_SWAP( &slot->u.infoWord, 500 void resetTracehead(InterpState* interpState, JitEntry *slot) 502 slot->codeAddress = gDvmJit.interpretTemplate; 503 setTraceConstruction(slot, false); 531 * slot in the chain. Possibly continue the chain walk in case 532 * some other thread allocated the slot we were looking 538 * At this point, if .dPC is NULL, then the slot we're 539 * looking at is the target slot from the primary has 941 JitEntry *slot = lookupAndAdd(interpState->pc, false); local [all...] |
/external/webkit/JavaScriptCore/runtime/ |
JSArray.cpp | 198 bool JSArray::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot) 204 return getOwnPropertySlot(exec, Identifier::from(exec, i), slot); 211 slot.setValueSlot(&valueSlot); 218 slot.setValueSlot(&it->second); 224 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, i), slot); 227 bool JSArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 230 slot.setValue(jsNumber(exec, length())); 237 return JSArray::getOwnPropertySlot(exec, i, slot); 239 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 274 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 329 PutPropertySlot slot; local [all...] |
/external/webkit/JavaScriptCore/interpreter/ |
Interpreter.cpp | 106 PropertySlot slot(o); 107 if (o->getPropertySlot(callFrame, ident, slot)) { 108 JSValue result = slot.getValue(callFrame, ident); 139 PropertySlot slot(o); 140 if (o->getPropertySlot(callFrame, ident, slot)) { 141 JSValue result = slot.getValue(callFrame, ident); 169 PropertySlot slot(globalObject); 170 if (globalObject->getPropertySlot(callFrame, ident, slot)) { 171 JSValue result = slot.getValue(callFrame, ident); 172 if (slot.isCacheable() && !globalObject->structure()->isUncacheableDictionary() && slot.slotBase() == globa (…) 808 PutPropertySlot slot; local 816 PutPropertySlot slot; local [all...] |
/hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/ |
bcmsdh_linux.c | 338 /* slot only . Allows for having multiple */ 343 /* lower word is slot number */ 367 SDLX_MSG(("%s: %s: bus %X, slot %X, vend %X, dev %X\n", 376 SDLX_MSG(("%s: %s: bus %X, slot %X, vendor %X, device %X (good PCI location)\n", 400 * of the SD Slot. 413 SDLX_MSG(("%s: Found possible SDIO Host Controller: bus %d slot %d func %d irq %d\n",
|
/dalvik/vm/ |
Debugger.c | [all...] |
/external/kernel-headers/original/linux/ |
relay.h | 233 * relay_reserve - reserve slot in channel buffer 237 * Returns pointer to reserved slot, NULL if full. 239 * Reserves a slot in the current cpu's channel buffer.
|
pci_regs.h | 195 #define PCI_CAP_ID_SLOTID 0x04 /* Slot Identification */ 268 /* Slot Identification */ 270 #define PCI_SID_ESR 2 /* Expansion Slot Register */ 335 #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */ 346 #define PCI_EXP_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ 347 #define PCI_EXP_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ 370 #define PCI_EXP_SLTCAP 20 /* Slot Capabilities */ 371 #define PCI_EXP_SLTCTL 24 /* Slot Control */ 372 #define PCI_EXP_SLTSTA 26 /* Slot Status */
|
/external/srec/srec/Semproc/src/ |
SymbolTable.c | 196 ESR_ReturnCode ST_getSymbolSlot(SymbolTable* ptr, Symbol** slot) 200 if (ptr == NULL || slot == NULL) 206 *slot = ptr->next++;
|
/external/webkit/WebCore/platform/win/ |
COMPtr.h | 203 static void constructDeletedValue(COMPtr<P>& slot) { slot.releaseRef(); *&slot = reinterpret_cast<P*>(-1); }
|
/bionic/libc/bionic/ |
malloc_debug_leak.c | 110 static HashEntry* find_entry(HashTable* table, int slot, 113 HashEntry* entry = table->slots[slot]; 135 size_t slot = hash % HASHTABLE_SIZE; local 145 HashEntry* entry = find_entry(&gHashTable, slot, backtrace, numEntries, size); 153 entry->slot = slot; 155 entry->next = gHashTable.slots[slot]; 161 gHashTable.slots[slot] = entry; 204 gHashTable.slots[entry->slot] = entry->next;
|
/bionic/libc/kernel/common/linux/sunrpc/ |
xprt.h | 117 struct rpc_rqst * slot; member in struct:rpc_xprt
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
ArrayListTest.java | 131 assertTrue("Should have returned the old item from slot 25", alist 199 assertNull("Item at slot 100 should be null", alist.get(100)); 200 assertNull("Item at slot 101 should be null", alist.get(101)); 201 assertEquals("Item at slot 102 should be 'yoink'", 203 assertEquals("Item at slot 103 should be 'kazoo'", 205 assertNull("Item at slot 104 should be null", alist.get(104)); 289 assertTrue("Item at slot 100 is wrong: " + alist.get(100), alist 291 assertTrue("Item at slot 101 is wrong: " + alist.get(101), alist 293 assertTrue("Item at slot 103 is wrong: " + alist.get(102), alist
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
ElemExsltFuncResult.java | 50 * index slot assigned for it in ElemExsltFunction compose().
|
/dalvik/vm/arch/sh/ |
CallSH4ABI.S | 373 mov.l r0, @r3 /* delay slot */ 377 fmov.s fr0, @r3 /* delay slot */ 383 fmov.s fr0, @(r0,r3) /* delay slot */ 388 mov.l r1, @(4,r3) /* delay slot */
|
/external/oprofile/daemon/ |
opd_sfile.h | 75 /** next in the hash slot */
|
/external/oprofile/libdb/ |
db_insert.c | 29 * done by odb_commit_reservation() so the new slot is visible only
|
/external/srec/audio/AudioIn/UNIX/include/ |
filter.h | 36 int state; // state of FIR delay line (index of next slot to fill)
|