Searched refs:codeId (Results 1 – 6 of 6) sorted by relevance
/external/v8/tools/profview/ |
D | profile-utils.js | 94 function createNodeFromStackEntry(code, codeId, vmState) { argument 97 return { name, codeId, type : resolveCodeKindAndVmState(code, vmState), 101 function childIdFromCode(codeId, code) { argument 111 return codeId * 4; 134 let codeId = -1; 137 codeId = stack[stackPos]; 138 code = codeId >= 0 ? file.code[codeId] : undefined; 153 let codeId = stack[stackPos]; 154 let code = codeId >= 0 ? file.code[codeId] : undefined; 164 let childId = childIdFromCode(codeId, code); [all …]
|
D | profview.js | 132 setCurrentCode(codeId) { argument 133 if (codeId !== main.currentState.currentCodeId) { 135 main.currentState.currentCodeId = codeId; 315 function createFunctionNode(name, codeId) { argument 319 if (codeId !== -1) { 322 main.setCurrentCode(codeId); 450 nameCell.appendChild(createFunctionNode(node.name, node.codeId));
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
D | EncodeDecodeTest.cc | 74 codecNo = codeId; in Setup() 147 << static_cast<int>(codeId) << ".pcm"; in Setup() 305 for (int codeId = 0; codeId < numCodecs; codeId++) { in Perform() local 307 for (int loopPars = 1; loopPars <= numPars[codeId]; loopPars++) { in Perform() 309 std::string fileName = EncodeToFile(1, codeId, codePars, _testMode); in Perform() 314 _receiver.codeId = codeId; in Perform() 331 int codeId, in EncodeToFile() argument 343 _sender.codeId = codeId; in EncodeToFile()
|
D | EncodeDecodeTest.h | 58 uint8_t codeId; variable 81 uint8_t codeId; variable 112 int codeId,
|
D | PacketLossTest.cc | 142 sender_->codeId = codec_id; in Perform() 157 receiver_->codeId = codec_id; in Perform()
|
/external/v8/tools/ |
D | profile.js | 877 entry.codeId = this.codeEntries_.length; 888 entry.codeId = this.codeEntries_.length; 898 entry.codeId = this.codeEntries_.length; 940 entry.codeId = this.codeEntries_.length; 942 this.functionEntries_[func.funcId].codes.push(entry.codeId); 976 var codeId = entry.codeId; 995 this.codeEntries_[entry.codeId].source = { 1018 let codeId = entry.codeId; 1019 if (!this.codeEntries_[codeId].deopt) { 1023 this.codeEntries_[codeId].deopt = { [all …]
|