Home
last modified time | relevance | path

Searched refs:offsetTable (Results 1 – 3 of 3) sorted by relevance

/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/compression/
DCompressionTableGenerator.java98 int [] offsetTable = new int [ BLOCKSIZE + 1 ]; in printOffsetTable() local
104 offsetTable[i] = i * 0x80; in printOffsetTable()
108 offsetTable[i] = (i * 0x80) + 0xAC00; in printOffsetTable()
112 offsetTable[ LATININDEX ] = 0x00C0; in printOffsetTable()
113 offsetTable[ IPAEXTENSIONINDEX ] = 0x0250; in printOffsetTable()
114 offsetTable[ GREEKINDEX ] = 0x0370; in printOffsetTable()
115 offsetTable[ ARMENIANINDEX ] = 0x0530; in printOffsetTable()
116 offsetTable[ HIRAGANAINDEX ] = 0x3040; in printOffsetTable()
117 offsetTable[ KATAKANAINDEX ] = 0x30A0; in printOffsetTable()
118 offsetTable[ HALFWIDTHKATAKANAINDEX ] = 0xFF60; in printOffsetTable()
[all …]
/third_party/node/deps/v8/tools/profview/
Dprofview.js1540 this.offsetTable = []; property
1548 this.offsetTable.push(codeOffset, scriptOffset);
1554 for (let i = this.offsetTable.length - 2; i >= 0; i -= 2) {
1555 if (this.offsetTable[i] <= codeOffset) {
1556 return this.offsetTable[i + 1];
1559 return this.offsetTable[1];
/third_party/node/deps/v8/tools/
Dprofile.mjs255 for (let i = this.offsetTable.length - 1; i >= 0; i--) {