Searched defs:rg (Results 1 - 15 of 15) sorted by relevance

/external/webp/src/utils/
H A Drandom.c33 void VP8InitRandom(VP8Random* const rg, float dithering) { argument
34 memcpy(rg->tab_, kRandomTable, sizeof(rg->tab_));
35 rg->index1_ = 0;
36 rg->index2_ = 31;
37 rg->amp_ = (dithering < 0.0) ? 0
H A Drandom.h34 void VP8InitRandom(VP8Random* const rg, float dithering);
39 static WEBP_INLINE int VP8RandomBits2(VP8Random* const rg, int num_bits, argument
43 diff = rg->tab_[rg->index1_] - rg->tab_[rg->index2_];
45 rg->tab_[rg->index1_] = diff;
46 if (++rg->index1_ == VP8_RANDOM_TABLE_SIZE) rg
55 VP8RandomBits(VP8Random* const rg, int num_bits) argument
[all...]
/external/v8/test/webkit/fast/js/kde/
H A DRegExp.js40 var rg = /a/g; variable
44 shouldBeTrue("rg.global");
49 shouldBe("rg.toString()", "'/a/g'");
54 rg.global = false;
55 shouldBeTrue("rg.global");
/external/jemalloc/include/jemalloc/internal/
H A Dbitmap.h139 bitmap_t rg = bitmap[rgoff]; local
141 return (rg == 0);
/external/opencv3/3rdparty/libwebp/dsp/
H A Dyuv.h98 const uint8_t rg = ((VP8kClip[y + r_off - YUV_RANGE_MIN] & 0xf8) | local
104 rgb[1] = rg;
106 rgb[0] = rg;
116 const uint8_t rg = ((VP8kClip4Bits[y + r_off - YUV_RANGE_MIN] << 4) | local
121 argb[1] = rg;
123 argb[0] = rg;
181 const uint8_t rg = (r & 0xf8) | (g >> 3); local
185 rgb[1] = rg;
187 rgb[0] = rg;
197 const uint8_t rg local
[all...]
H A Dlossless.c1237 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf); local
1241 *dst++ = rg;
1243 *dst++ = rg;
1254 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7); local
1258 *dst++ = rg;
1260 *dst++ = rg;
/external/webp/src/dsp/
H A Dyuv.h112 const int rg = (r & 0xf8) | (g >> 5); local
116 rgb[1] = rg;
118 rgb[0] = rg;
128 const int rg = (r & 0xf0) | (g >> 4); local
132 argb[1] = rg;
134 argb[0] = rg;
H A Dalpha_processing.c263 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);
H A Dlossless.c444 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf); local
448 *dst++ = rg;
450 *dst++ = rg;
461 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7); local
465 *dst++ = rg;
467 *dst++ = rg;
H A Dyuv_sse2.c105 const __m128i rg = _mm_unpacklo_epi8(rb, ga); local
107 const __m128i RGBA_lo = _mm_unpacklo_epi16(rg, ba);
108 const __m128i RGBA_hi = _mm_unpackhi_epi16(rg, ba);
147 const __m128i rg = _mm_or_si128(r1, g1); local
150 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb);
152 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg);
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp129 void Set(CBaseRandomGenerator *rg) { RG = rg; } argument
651 CBenchRandomGenerator rg;
664 CBaseRandomGenerator *rg);
736 rg.Set(rgLoc);
741 if (!rg.Alloc(kBufferSize))
744 rg.GenerateSimpleRandom();
746 rg.Generate(generateDictBits);
747 crc = CrcCalc(rg.Buffer, rg
[all...]
/external/clang/test/Index/
H A Dprint-type-size.cpp360 // CHECK64: FieldDecl=rg:[[@LINE+2]]:8 (Definition) [type=Test3::C &] [typekind=LValueReference] [sizeof=88] [alignof=8] [offsetof=832]
361 // CHECK32: FieldDecl=rg:[[@LINE+1]]:8 (Definition) [type=Test3::C &] [typekind=LValueReference] [sizeof=60] [alignof=4] [offsetof=576]
362 C &rg; member in struct:Test3::BaseStruct
/external/webp/src/dec/
H A Dframe.c366 static void Dither8x8(VP8Random* const rg, uint8_t* dst, int bps, int amp) { argument
372 VP8RandomBits2(rg, DITHER_AMP_BITS + 1, amp) - DITHER_AMP_CENTER;
/external/webp/src/enc/
H A Dpicture_csp.c140 static int RGBToY(int r, int g, int b, VP8Random* const rg) { argument
141 return (rg == NULL) ? VP8RGBToY(r, g, b, YUV_HALF)
142 : VP8RGBToY(r, g, b, VP8RandomBits(rg, YUV_FIX));
145 static int RGBToU(int r, int g, int b, VP8Random* const rg) { argument
146 return (rg == NULL) ? VP8RGBToU(r, g, b, YUV_HALF << 2)
147 : VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
150 static int RGBToV(int r, int g, int b, VP8Random* const rg) { argument
151 return (rg == NULL) ? VP8RGBToV(r, g, b, YUV_HALF << 2)
152 : VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
751 VP8Random* const rg) {
745 ConvertRowToY(const uint8_t* const r_ptr, const uint8_t* const g_ptr, const uint8_t* const b_ptr, int step, uint8_t* const dst_y, int width, VP8Random* const rg) argument
820 ConvertRowsToUV(const uint16_t* rgb, uint8_t* const dst_u, uint8_t* const dst_v, int width, VP8Random* const rg) argument
889 VP8Random* rg = NULL; local
[all...]
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-user.jar ... com/google/gwt/resources/rebind/context/ com/google/gwt/resources/rg/ com/google/gwt/rpc/ com/google/gwt/rpc/client/ com ...

Completed in 437 milliseconds