Searched refs:byte_code (Results 1 – 2 of 2) sorted by relevance
272 static int RepeatsForCode(int byte_code) { in RepeatsForCode() argument273 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() argument283 int constant = (byte_code & 0xf) | ((byte_code & 0x40) >> 2); in RootArrayConstantFromByteCode()
916 #define FOUR_CASES(byte_code) \ in ReadChunk() argument917 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() argument923 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()