Home
last modified time | relevance | path

Searched refs:byte_code (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dserialize.h272 static int RepeatsForCode(int byte_code) { in RepeatsForCode() argument
273 ASSERT(byte_code >= kConstantRepeat && byte_code <= 0x7f); in RepeatsForCode()
274 return byte_code - 0x73; in RepeatsForCode()
282 static int RootArrayConstantFromByteCode(int byte_code) { in RootArrayConstantFromByteCode() argument
283 int constant = (byte_code & 0xf) | ((byte_code & 0x40) >> 2); in RootArrayConstantFromByteCode()
Dserialize.cc916 #define FOUR_CASES(byte_code) \ in ReadChunk() argument
917 case byte_code: \ in ReadChunk()
918 case byte_code + 1: \ in ReadChunk()
919 case byte_code + 2: \ in ReadChunk()
920 case byte_code + 3: in ReadChunk()
922 #define SIXTEEN_CASES(byte_code) \ in ReadChunk() argument
923 FOUR_CASES(byte_code) \ in ReadChunk()
924 FOUR_CASES(byte_code + 4) \ in ReadChunk()
925 FOUR_CASES(byte_code + 8) \ in ReadChunk()
926 FOUR_CASES(byte_code + 12) in ReadChunk()