/system/core/libpixelflinger/ |
col32cb16blend.S | 36 // r2 = count 56 subs r2, r2, #1 // decrement loop counter
|
/external/chromium_org/v8/src/arm/ |
deoptimizer-arm.cc | 173 __ ldr(r2, MemOperand(sp, kSavedRegistersAreaSize)); 188 // r2: bailout id already loaded. 207 __ ldr(r2, MemOperand(sp, i * kPointerSize)); 208 __ str(r2, MemOperand(r1, offset)); 224 // Compute a pointer to the unwinding limit in register r2; that is 226 __ ldr(r2, MemOperand(r1, FrameDescription::frame_size_offset())); 227 __ add(r2, r2, sp); 241 __ cmp(r2, sp); 266 // Inner loop state: r2 = current FrameDescription*, r3 = loop index [all...] |
/external/libvpx/libvpx/vp8/common/arm/neon/ |
bilinearpredict4x4_neon.asm | 20 ; r2 int xoffset, 32 cmp r2, #0 ;skip first_pass filter if xoffset=0 37 add r2, r12, r2, lsl #3 ;calculate Hfilter location (2coeffsx4bytes=8bytes) 40 vld1.u32 {d31}, [r2] ;first_pass filter 91 add r2, r1, lr 99 vst1.32 {d3[1]}, [r2]
|
/art/compiler/dex/quick/x86/ |
int_x86.cc | 51 LoadValueDirectWideFixed(rl_src2, r2, r3); 52 // Compute (r1:r0) = (r1:r0) - (r3:r2) 53 OpRegReg(kOpSub, r0, r2); // r0 = r0 - r2 55 NewLIR2(kX86Set8R, r2, kX86CondL); // r2 = (r1:r0) < (r3:r2) ? 1 : 0 56 NewLIR2(kX86Movzx8RR, r2, r2); 57 OpReg(kOpNeg, r2); // r2 = -r [all...] |
/external/llvm/unittests/Support/ |
RegexTest.cpp | 28 Regex r2("[0-9]+"); 29 EXPECT_TRUE(r2.match("aa216b", &Matches)); 71 Regex r2("a([0-9])b\\1c\\1"); 72 EXPECT_TRUE(r2.match("a4b4c4", &Matches)); 75 EXPECT_FALSE(r2.match("a2b2c3"));
|
/external/tremolo/Tremolo/ |
floor1LARM.s | 42 @ r2 = floor 54 LDR r5, [r2], r3,LSL #2 @ r5 = *floor r2 = floor+base 59 ADDLT r2, r2, #4 @ floor+=1
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/ |
CalcWindowEnergy_v5.s | 37 mov r2, r2, lsl #16 39 mov r2, r2, asr #16 58 add r5, r5, r2 @ tidx = tidx + chIncrement;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xregion.h | 91 #define EXTENTCHECK(r1, r2) \ 92 ((r1)->x2 > (r2)->x1 && \ 93 (r1)->x1 < (r2)->x2 && \ 94 (r1)->y2 > (r2)->y1 && \ 95 (r1)->y1 < (r2)->y2)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xregion.h | 91 #define EXTENTCHECK(r1, r2) \ 92 ((r1)->x2 > (r2)->x1 && \ 93 (r1)->x1 < (r2)->x2 && \ 94 (r1)->y2 > (r2)->y1 && \ 95 (r1)->y1 < (r2)->y2)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xregion.h | 91 #define EXTENTCHECK(r1, r2) \ 92 ((r1)->x2 > (r2)->x1 && \ 93 (r1)->x1 < (r2)->x2 && \ 94 (r1)->y2 > (r2)->y1 && \ 95 (r1)->y1 < (r2)->y2)
|
/external/qemu/android/skin/ |
rect.c | 143 skin_rect_contains_rect( SkinRect *r1, SkinRect *r2 ) 148 skin_box_from_rect( &b, r2 ); 163 skin_rect_intersect( SkinRect* result, SkinRect* r1, SkinRect* r2 ) 168 skin_box_from_rect( &b, r2 ); 185 skin_rect_equals( SkinRect* r1, SkinRect* r2 ) 187 return (r1->pos.x == r2->pos.x && r1->pos.y == r2->pos.y && 188 r1->size.w == r2->size.w && r2->size.h == r2->size.h) [all...] |
/external/libvpx/libvpx/vp9/common/arm/neon/ |
vp9_loopfilter_neon.asm | 33 ; r2 const uint8_t *blimit, 40 vld1.8 {d0[]}, [r2] ; duplicate *blimit 42 ldr r2, [sp, #4] ; load thresh 49 vld1.8 {d2[]}, [r2] ; duplicate *thresh 52 sub r2, r0, r1, lsl #1 ; move src pointer down by 4 lines 53 add r3, r2, r1, lsr #1 ; set to 3 lines down 55 vld1.u8 {d3}, [r2@64], r1 ; p3 57 vld1.u8 {d5}, [r2@64], r1 ; p1 59 vld1.u8 {d7}, [r2@64], r1 ; q0 61 vld1.u8 {d17}, [r2@64] ; q [all...] |
/external/chromium_org/ui/views/touchui/ |
touch_selection_controller_impl.cc | 91 gfx::Rect Union(const gfx::Rect& r1, const gfx::Rect& r2) { 92 int rx = std::min(r1.x(), r2.x()); 93 int ry = std::min(r1.y(), r2.y()); 94 int rr = std::max(r1.right(), r2.right()); 95 int rb = std::max(r1.bottom(), r2.bottom()); 282 gfx::Rect r1, r2; local 283 client_view_->GetSelectionEndPoints(&r1, &r2); 286 gfx::Point screen_pos_2(r2.origin()); 289 gfx::Rect screen_rect_2(screen_pos_2, r2.size()); 298 UpdateContextMenu(r1.origin(), r2.origin()) [all...] |
/external/libffi/src/s390/ |
sysv.S | 36 # r2: cif->bytes 54 sr %r15,%r2 64 la %r2,96(%r15) # Save area 68 lm %r2,%r6,0(%r11) # Load arguments 93 st %r2,0(%r8) # Return int 99 stm %r2,%r3,0(%r8) # Return long long 124 stm %r2,%r6,8(%r15) # Save arguments 131 lr %r2,%r0 # Closure 141 lm %r2,%r3,96+8(%r15) 239 # r2: cif->byte [all...] |
/external/llvm/test/MC/ARM/ |
simple-fp-encoding.s | 123 vmrs r2, fpsid 131 @ CHECK: vmrs r2, fpsid @ encoding: [0x10,0x2a,0xf0,0xee] 188 @ CHECK: vmov s2, r2 @ encoding: [0x10,0x2a,0x01,0xee] 192 vmov s2, r2 197 @ CHECK: vmov r2, s2 @ encoding: [0x10,0x2a,0x11,0xee] 201 vmov r2, s2 208 vmov s3, s4, r1, r2 209 vmov s2, s3, r1, r2 210 vmov r1, r2, s3, s4 211 vmov r1, r2, s2, s [all...] |
/external/valgrind/main/exp-bbv/tests/arm-linux/ |
ll.S | 47 mov r2,#(N-F) @ R 93 strb r4,[r9,r2] @ store a byte to text_buf[r] 94 add r2,r2,#1 @ r++ 97 and r2,r2,r0 @ mask r 189 mov r2,#'r' 222 mov r2,#'S' 260 @ r0,r1,r2 = string to find 271 cmpeq r5,r2 @ if first two matched, comp this on [all...] |
/external/libffi/src/powerpc/ |
aix.S | 29 .set r2,2 118 stw r2, 20(r1) 130 lwz r2,4(r12) 134 lwz r2,20(r1) 140 stw r2,20(r1) 142 lwz r2,4(r29) 178 lwz r2,20(r1)
|
/hardware/qcom/display/msm8960/libcopybit/ |
software_converter.cpp | 93 // r2 tracks the row of the destination buffer 98 unsigned int r1 = 0, r2 = 0, i = 0, j = 0; local 102 r2++; 106 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 107 r2++; 108 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; 111 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 112 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size];
|
/hardware/qcom/display/msm8974/libcopybit/ |
software_converter.cpp | 93 // r2 tracks the row of the destination buffer 98 unsigned int r1 = 0, r2 = 0, i = 0, j = 0; local 102 r2++; 106 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 107 r2++; 108 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; 111 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 112 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size];
|
/hardware/qcom/display/msm8x26/libcopybit/ |
software_converter.cpp | 93 // r2 tracks the row of the destination buffer 98 unsigned int r1 = 0, r2 = 0, i = 0, j = 0; local 102 r2++; 106 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 107 r2++; 108 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; 111 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; 112 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size];
|
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_rule.cpp | 246 * Return true if this rule masks another rule. If r1 masks r2 then 247 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks 248 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y". 251 UBool TransliterationRule::masks(const TransliterationRule& r2) const { 252 /* Rule r1 masks rule r2 if the string formed of the 257 * r2: aaakkkkkpppp 262 * must be <= the length of r2 to the left; ditto for the 264 * of) the corresponding characters of r2. The superse [all...] |
/external/icu4c/i18n/ |
rbt_rule.cpp | 247 * Return true if this rule masks another rule. If r1 masks r2 then 248 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks 249 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y". 252 UBool TransliterationRule::masks(const TransliterationRule& r2) const { 253 /* Rule r1 masks rule r2 if the string formed of the 258 * r2: aaakkkkkpppp 263 * must be <= the length of r2 to the left; ditto for the 265 * of) the corresponding characters of r2. The superse [all...] |
/external/skia/tests/ |
DataRefTest.cpp | 172 SkAutoTUnref<SkData> r2(SkData::NewWithCString(NULL)); 173 REPORTER_ASSERT(reporter, 1 == r2->size()); 174 REPORTER_ASSERT(reporter, 0 == *r2->bytes()); 204 SkAutoTUnref<SkData> r2(SkData::NewFromFD(fd)); 205 REPORTER_ASSERT(reporter, r2.get() != NULL); 206 REPORTER_ASSERT(reporter, r2->size() == 26); 207 REPORTER_ASSERT(reporter, strncmp(static_cast<const char*>(r2->data()), s, 26) == 0); 216 SkAutoTUnref<SkData> r2(SkData::NewWithProc(new int[N], N*sizeof(int), 222 assert_len(reporter, r2, N * sizeof(int));
|
/external/valgrind/main/none/tests/s390x/ |
mvcl.c | 22 uint64_t r2; member in struct:__anon31159 30 do_mvcl(uint64_t r1, uint64_t r1p1, uint64_t r2, uint64_t r2p1) 36 register uint64_t a2 asm ("4") = r2; 49 regs.r2 = a2; 63 result.addr2 = regs.r2; 79 uint64_t r1, r1p1, r2, r2p1; local 92 r2 = (uint64_t)addr2; 96 regs = do_mvcl(r1, r1p1, r2, r2p1); 103 printf("FAIL: r2[0:31] modified (unused bits 0)\n"); 115 regs = do_mvcl(r1, r1p1, r2, r2p1) [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
lpc_masking_model_neon.S | 34 str r2, [r13, #12] 53 ldr r2, [r11], #4 @ corr_coeffs[i] 55 vdup.s32 d25, r2 58 movle r2, r6 92 add r2, r6, #2 93 add r2, r1, r2 105 cmp r2, r0 149 vmov.32 r2, d1[1] @ Store # of sign bits of only the 32 MSBs. 167 add r12, r1, r2 @ add 2nd part of shift_internal [all...] |