Home
last modified time | relevance | path

Searched refs:tableIndex (Results 1 – 7 of 7) sorted by relevance

/external/opencore/protocols/http_parcom/src/
Dstring_keyvalue_store.cpp58 int32 StringKeyValueStore::addKeyToStore(const StrCSumPtrLen &aNewKey, int32 tableIndex) in addKeyToStore() argument
60 if (!iFieldKeys[tableIndex].empty()) return StringKeyValueStore_Success; in addKeyToStore()
65 OSCL_TRY(err, iFieldKeyTableIndexVector.push_back(tableIndex)); in addKeyToStore()
72 iFieldKeys[tableIndex].setPtrLen(newLocation, aKeyLength); in addKeyToStore()
80 int32 tableIndex; in addKeyValuePair() local
81 …if ((tableIndex = getHashTableIndex(aNewKey, false)) < 0) return false; // false in getHashTableIn… in addKeyValuePair()
84 if (addKeyToStore(aNewKey, tableIndex)) return StringKeyValueStore_NoMemory; in addKeyValuePair()
91 if (iFieldVals[tableIndex].length() == 0) in addKeyValuePair()
95 iFieldVals[tableIndex].setPtrLen(newLocation, aValueLength); in addKeyValuePair()
101 releaseOldKeyValueItem(iFieldVals[tableIndex].c_str(), aValueLength); in addKeyValuePair()
[all …]
Dstring_keyvalue_store.h276 int32 addKeyToStore(const StrCSumPtrLen &aNewKey, int32 tableIndex);
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.h447 …& immediateSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_immediateSwi… in immediateSwitchJumpTable() argument
451 …& characterSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_characterSwi… in characterSwitchJumpTable() argument
455 …able& stringSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_stringSwitc… in stringSwitchJumpTable() argument
DCodeBlock.cpp917 int tableIndex = (++it)->u.operand; in dump() local
920 …printf("[%4d] switch_imm\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, locationForOf… in dump()
924 int tableIndex = (++it)->u.operand; in dump() local
927 …printf("[%4d] switch_char\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, locationForO… in dump()
931 int tableIndex = (++it)->u.operand; in dump() local
934 …printf("[%4d] switch_string\t %d, %d(->%d), %s\n", location, tableIndex, defaultTarget, locationFo… in dump()
/external/webkit/JavaScriptCore/jit/
DJITOpcodes.cpp1299 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_imm() local
1304 SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTable(tableIndex); in emit_op_switch_imm()
1310 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_imm()
1317 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_char() local
1322 SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTable(tableIndex); in emit_op_switch_char()
1328 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_char()
1335 unsigned tableIndex = currentInstruction[1].u.operand; in emit_op_switch_string() local
1340 StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTable(tableIndex); in emit_op_switch_string()
1345 stubCall.addArgument(Imm32(tableIndex)); in emit_op_switch_string()
2493 unsigned tableIndex = currentInstruction[1].u.operand;
[all …]
DJITStubs.cpp2866 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local
2871 …return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(scrutinee.asInt32()).executable… in DEFINE_STUB_FUNCTION()
2876 … return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(intValue).executableAddress(); in DEFINE_STUB_FUNCTION()
2878 return codeBlock->immediateSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION()
2887 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local
2891 void* result = codeBlock->characterSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION()
2896 …result = codeBlock->characterSwitchJumpTable(tableIndex).ctiForValue(value->data()[0]).executableA… in DEFINE_STUB_FUNCTION()
2907 unsigned tableIndex = stackFrame.args[1].int32(); in DEFINE_STUB_FUNCTION() local
2911 void* result = codeBlock->stringSwitchJumpTable(tableIndex).ctiDefault.executableAddress(); in DEFINE_STUB_FUNCTION()
2915 … result = codeBlock->stringSwitchJumpTable(tableIndex).ctiForValue(value).executableAddress(); in DEFINE_STUB_FUNCTION()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp2857 int tableIndex = (++vPC)->u.operand; in privateExecute() local
2861 …vPC += callFrame->codeBlock()->immediateSwitchJumpTable(tableIndex).offsetForValue(scrutinee.asInt… in privateExecute()
2866 …vPC += callFrame->codeBlock()->immediateSwitchJumpTable(tableIndex).offsetForValue(intValue, defau… in privateExecute()
2881 int tableIndex = (++vPC)->u.operand; in privateExecute() local
2891 …vPC += callFrame->codeBlock()->characterSwitchJumpTable(tableIndex).offsetForValue(value->data()[0… in privateExecute()
2904 int tableIndex = (++vPC)->u.operand; in privateExecute() local
2910 …vPC += callFrame->codeBlock()->stringSwitchJumpTable(tableIndex).offsetForValue(asString(scrutinee… in privateExecute()