HomeSort by relevance Sort by last modified time
    Searched full:byte_code (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
serialize.h 272 static int RepeatsForCode(int byte_code) {
273 ASSERT(byte_code >= kConstantRepeat && byte_code <= 0x7f);
274 return byte_code - 0x73;
282 static int RootArrayConstantFromByteCode(int byte_code) {
283 int constant = (byte_code & 0xf) | ((byte_code & 0x40) >> 2);
serialize.cc     [all...]
  /external/chromium_org/v8/src/
serialize.h 280 static int RepeatsForCode(int byte_code) {
281 ASSERT(byte_code >= kConstantRepeat && byte_code <= 0x7f);
282 return byte_code - 0x72;
287 static int RootArrayConstantFromByteCode(int byte_code) {
288 return byte_code & 0x1f;
serialize.cc     [all...]

Completed in 153 milliseconds