HomeSort by relevance Sort by last modified time
    Searched defs:rg (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/v8/test/webkit/fast/js/kde/
RegExp.js 40 var rg = /a/g; variable
44 shouldBeTrue("rg.global");
49 shouldBe("rg.toString()", "'/a/g'");
54 rg.global = false;
55 shouldBeTrue("rg.global");
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetTypeChooser.java 47 RadioGroup rg = (RadioGroup) findViewById(R.id.widget_type); local
48 rg.setOnCheckedChangeListener(mListener);
  /external/jemalloc/include/jemalloc/internal/
bitmap.h 71 bitmap_t rg = bitmap[rgoff]; local
73 return (rg == 0);
  /frameworks/native/include/ui/
vec3.h 48 Impersonator< tvec2<T> > rg; member in union:android::tvec3::__anon38838
vec4.h 48 Impersonator< tvec2<T> > rg; member in union:android::tvec4::__anon38843
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/
Test_return_object.java 167 RunnerGenerator rg = (RunnerGenerator) Class.forName( local
169 Runner r = rg.run();
  /external/chromium_org/third_party/libwebp/dsp/
alpha_processing.c 263 const uint32_t rg = rgba4444[2 * i + rg_byte_pos]; local
267 const uint8_t r = multiply(dither_hi(rg), mult);
268 const uint8_t g = multiply(dither_lo(rg), mult);
yuv.h 125 const int rg = (r & 0xf8) | (g >> 5); local
129 rgb[1] = rg;
131 rgb[0] = rg;
141 const int rg = (r & 0xf0) | (g >> 4); local
145 argb[1] = rg;
147 argb[0] = rg;
187 const int rg = ((VP8kClip[y + r_off - YUV_RANGE_MIN] & 0xf8) | local
193 rgb[1] = rg;
195 rgb[0] = rg;
205 const int rg = ((VP8kClip4Bits[y + r_off - YUV_RANGE_MIN] << 4) local
    [all...]
lossless.c 1316 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf); local
1333 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7); local
    [all...]
  /external/pixman/pixman/
pixman-gradient-walker.c 62 float ra, rr, rg, rb; local
137 rg = (right_c->green * (1.0f/257.0f));
148 walker->g_b = (lg + rg) / 510.0f;
157 walker->g_b = (lg * rx - rg * lx) * w_rec * (1.0f/255.0f);
162 walker->g_s = (rg - lg) * w_rec * (1.0f/255.0f);
  /external/webp/src/dsp/
alpha_processing.c 263 const uint32_t rg = rgba4444[2 * i + rg_byte_pos]; local
267 const uint8_t r = multiply(dither_hi(rg), mult);
268 const uint8_t g = multiply(dither_lo(rg), mult);
yuv.h 125 const int rg = (r & 0xf8) | (g >> 5); local
129 rgb[1] = rg;
131 rgb[0] = rg;
141 const int rg = (r & 0xf0) | (g >> 4); local
145 argb[1] = rg;
147 argb[0] = rg;
187 const int rg = ((VP8kClip[y + r_off - YUV_RANGE_MIN] & 0xf8) | local
193 rgb[1] = rg;
195 rgb[0] = rg;
205 const int rg = ((VP8kClip4Bits[y + r_off - YUV_RANGE_MIN] << 4) local
    [all...]
lossless.c 1316 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf); local
1333 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7); local
    [all...]
  /packages/apps/Gallery2/jni/filters/
hsv.c 92 int rg=0; local
105 rb = ( rg = ( rr =( cv >> ABITS) ));
123 rg = X;
128 rg = cv;
133 rg = cv;
138 rg = X;
143 rg = m;
148 rg = m ;
154 rgb[rgbOff+1] = rg;
  /external/lzma/Java/SevenZip/
LzmaBench.java 28 CRandomGenerator RG = new CRandomGenerator();
48 Value = RG.GetRnd();
58 CBitRandomGenerator RG = new CBitRandomGenerator();
72 int GetRndBit() { return RG.GetRnd(1); }
75 int len = RG.GetRnd(numBits);
76 return RG.GetRnd((int)len);
82 return (GetLogRandBits(4) << 10) | RG.GetRnd(10);
84 int GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); }
85 int GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); }
317 CBenchRandomGenerator rg = new CBenchRandomGenerator(); local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture_csp.c 75 static int RGBToY(int r, int g, int b, VP8Random* const rg) {
76 return VP8RGBToY(r, g, b, VP8RandomBits(rg, YUV_FIX));
79 static int RGBToU(int r, int g, int b, VP8Random* const rg) {
80 return VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
83 static int RGBToV(int r, int g, int b, VP8Random* const rg) {
84 return VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
167 picture->u[dst] = RGBToU(r, g, b, &rg); \
168 picture->v[dst] = RGBToV(r, g, b, &rg); \
183 VP8Random rg; local
194 VP8InitRandom(&rg, dithering)
    [all...]
  /external/webp/src/enc/
picture_csp.c 75 static int RGBToY(int r, int g, int b, VP8Random* const rg) {
76 return VP8RGBToY(r, g, b, VP8RandomBits(rg, YUV_FIX));
79 static int RGBToU(int r, int g, int b, VP8Random* const rg) {
80 return VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
83 static int RGBToV(int r, int g, int b, VP8Random* const rg) {
84 return VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
167 picture->u[dst] = RGBToU(r, g, b, &rg); \
168 picture->v[dst] = RGBToV(r, g, b, &rg); \
183 VP8Random rg; local
194 VP8InitRandom(&rg, dithering)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorRectView.java 151 LinearGradient rg = new LinearGradient( local
153 mWheelPaint2.setShader(rg);
  /external/clang/test/Index/
print-type-size.cpp 359 // CHECK64: FieldDecl=rg:[[@LINE+2]]:8 (Definition) [type=Test3::C &] [typekind=LValueReference] [sizeof=88] [alignof=8] [offsetof=832]
360 // CHECK32: FieldDecl=rg:[[@LINE+1]]:8 (Definition) [type=Test3::C &] [typekind=LValueReference] [sizeof=60] [alignof=4] [offsetof=576]
361 C &rg; member in struct:Test3::BaseStruct
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 99 CBaseRandomGenerator *RG;
101 void Set(CBaseRandomGenerator *rg) { RG = rg; }
119 UInt32 res = RG->GetRnd();
133 res = RG->GetRnd();
137 res = RG->GetRnd();
496 CBenchRandomGenerator rg; member in struct:CEncoderInfo
499 HRESULT Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rg);
555 rg.Set(rgLoc);
709 CBaseRandomGenerator rg; local
    [all...]
  /hardware/qcom/msm8x27/kernel-headers/linux/
msm_mdp.h 396 uint32_t c, r, g, b, rr, gg, bb, rg, gb, rb, rgb_0, rgb_1; member in struct:mdp_pcc_coeff
  /hardware/qcom/msm8x27/original-kernel-headers/linux/
msm_mdp.h 416 uint32_t c, r, g, b, rr, gg, bb, rg, gb, rb, rgb_0, rgb_1; member in struct:mdp_pcc_coeff
  /hardware/ti/omap4-aah/kernel-headers-ti/video/
dsscomp.h 117 __s16 rr, rg, rb; member in struct:omap_dss_cpr_coefs
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_mdp.h 442 uint32_t c, r, g, b, rr, gg, bb, rg, gb, rb, rgb_0, rgb_1; member in struct:mdp_pcc_coeff
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_mdp.h 458 uint32_t c, r, g, b, rr, gg, bb, rg, gb, rb, rgb_0, rgb_1; member in struct:mdp_pcc_coeff

Completed in 772 milliseconds

1 2