Lines Matching refs:index
268 Address p, EmbeddedObjectIndex index);
1518 void fmov(const VRegister& vd, int index, const Register& rn);
1521 void fmov(const Register& rd, const VRegister& vn, int index);
1803 int index);
2305 static Instr ImmNEONHLM(int index, int num_bits) {
2308 DCHECK(is_uint3(index));
2309 h = (index >> 2) & 1;
2310 l = (index >> 1) & 1;
2311 m = (index >> 0) & 1;
2313 DCHECK(is_uint2(index));
2314 h = (index >> 1) & 1;
2315 l = (index >> 0) & 1;
2318 DCHECK(is_uint1(index) && (num_bits == 1));
2319 h = (index >> 0) & 1;
2331 static Instr ImmNEON5(Instr format, int index) {
2332 DCHECK(is_uint4(index));
2334 int imm5 = (index << (s + 1)) | (1 << s);
2338 static Instr ImmNEON4(Instr format, int index) {
2339 DCHECK(is_uint4(index));
2341 int imm4 = index << s;