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

1 2 3

  /external/clang/test/Analysis/engine/
replay-without-inlining.c 22 inline unsigned char gb(IB *input) { function
28 str[0] = gb(st);
29 str[1] = gb(st);
30 str[2] = gb(st);
31 str[3] = gb(st);
  /build/tools/rgb2565/
to565.c 60 int gb = (g < 0) ? 0 : ((g > 255) ? 255 : g); local
65 out = to565(rb, gb, bb);
  /external/clang/test/Sema/
attr-flag-enum.c 11 gb = 0x4, enumerator in enum:flag2
  /external/deqp/framework/common/
tcuRGBA.cpp 73 int gb = (bPacked >> RGBA::GREEN_SHIFT) & 0xFF; local
75 gDiff = (deUint8)deAbs32(ga - gb);
  /external/deqp/framework/platform/android/
tcuAndroidInternals.cpp 49 GraphicBufferFunctions& gb = m_functions.graphicBuffer; local
51 setFuncPtr(gb.constructor, m_library, "_ZN7android13GraphicBufferC1Ejjij");
52 setFuncPtr(gb.destructor, m_library, "_ZN7android13GraphicBufferD1Ev");
53 setFuncPtr(gb.getNativeBuffer, m_library, "_ZNK7android13GraphicBuffer15getNativeBufferEv");
54 setFuncPtr(gb.lock, m_library, "_ZN7android13GraphicBuffer4lockEjPPv");
55 setFuncPtr(gb.unlock, m_library, "_ZN7android13GraphicBuffer6unlockEv");
56 setFuncPtr(gb.initCheck, m_library, "_ZNK7android13GraphicBuffer9initCheckEv");
133 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
136 return pointerToOffset<android::android_native_base_t>(gb, 2 * DE_PTR_SIZE);
185 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions. (…) member in class:tcu::Android::internal::android
    [all...]
  /external/webp/src/dsp/
yuv.h 113 const int gb = ((g << 3) & 0xe0) | (b >> 3); local
115 rgb[0] = gb;
119 rgb[1] = gb;
lossless.c 462 const uint8_t gb = ((argb >> 5) & 0xe0) | ((argb >> 3) & 0x1f); local
464 *dst++ = gb;
468 *dst++ = gb;
yuv_sse2.c 148 const __m128i gb = _mm_or_si128(g2, b1); local
150 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb);
152 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg);
522 // This macro computes (RG * MULT_RG + GB * MULT_GB + ROUNDER) >> DESCALE_FIX
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.cpp 126 sp<GraphicBuffer> gb; local
127 res = mBufferManager->getBufferForStream(getId(), getStreamSetId(), &gb, &fenceFd);
131 anb = gb.get();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 42 Image gb = manager.getFlag("GB"); local
48 assertSame(gb, manager.getFlag("en", "GB"));
53 assertSame(gb, manager.getFlag("en", null));
67 assertNotSame(gb, manager.getFlag("cy", null)); // Wales
75 assertSame(gb, manager.getFlagForFolderName("values-en-rGB"));
90 "fi", "fj", "fk", "fm", "fo", "fr", "ga", "gb", "gd", "ge", "gf", "gg", "gh", "gi",
  /bionic/libc/kernel/uapi/linux/
am437x-vpfe.h 84 char gb; member in struct:vpfe_ccdc_black_compensation
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventState.java 221 final double gb = handler.g(tb, interpolator.getInterpolatedState()); local
224 if (g0Positive ^ (gb >= 0)) {
228 increasing = gb >= ga;
244 if (ga * gb >= 0) {
249 // this implies that the real sign of ga is the same as gb, so we need to slightly
250 // shift ta to make sure ga and gb get opposite signs and the solver won't complain
253 for (int k = 0; (k < 4) && (ga * gb > 0); ++k) {
261 if (ga * gb > 0) {
281 ga = gb;
290 ga = gb;
    [all...]
  /external/fio/t/
genzipf.c 185 printf("Generating %s distribution with %f input and %lu GB size and %lu block_size.\n", dist_types[dist_type], dist_val, gb_size, block_size);
298 double gb = (double)os->nranges * block_size / 1024.0; local
301 if (gb > 1024.0) {
303 gb /= 1024.0;
305 if (gb > 1024.0) {
307 gb /= 1024.0;
313 gb, p);
  /external/kernel-headers/original/uapi/linux/
am437x-vpfe.h 97 /* Constant value to subtract from Gb component */
98 char gb; member in struct:vpfe_ccdc_black_compensation
  /external/opencv3/3rdparty/libwebp/dsp/
yuv.h 100 const uint8_t gb = (((VP8kClip[y + g_off - YUV_RANGE_MIN] << 3) & 0xe0) | local
103 rgb[0] = gb;
107 rgb[1] = gb;
182 const uint8_t gb = (g << 5) | b; local
184 rgb[0] = gb;
188 rgb[1] = gb;
lossless.c 1255 const uint8_t gb = ((argb >> 5) & 0xe0) | ((argb >> 3) & 0x1f); local
    [all...]
  /external/opencv3/modules/ts/src/
ocl_test.cpp 79 size_t gb = value; local
83 if (gb > 0)
84 stream << gb << " GB "; local
  /external/valgrind/VEX/useful/
smchash.c 36 GuestBytes* gb = malloc(sizeof(GuestBytes)); local
37 assert(gb);
42 r= fscanf(f, "GuestBytes %llx %d ", &gb->ga, &gb->nbytes);
46 assert(gb->ga != 0);
47 assert(gb->nbytes > 0);
48 assert(gb->nbytes < 5000); // let's say
50 Int nToAlloc = gb->nbytes + (gb->ga & 3);
52 gb->bytes = malloc( gb->nbytes + nToAlloc)
80 GuestBytes* gb = read_one(f); local
    [all...]
  /external/guice/core/src/com/google/inject/internal/
MoreTypes.java 243 GenericArrayType gb = (GenericArrayType) b; local
244 return equals(ga.getGenericComponentType(), gb.getGenericComponentType());
  /frameworks/base/media/jni/
android_media_ImageWriter.cpp 584 GraphicBuffer *gb = reinterpret_cast<GraphicBuffer *> local
586 *buffer = gb;
  /hardware/qcom/display/msm8996/sdm/include/private/
color_params.h 177 uint32_t gb = 0; member in struct:sdm::SDEPccCoeff
  /external/valgrind/coregrind/m_debuginfo/
debuginfo.c 4145 GlobalBlock gb; local
    [all...]
  /external/valgrind/exp-sgcheck/
sg_main.c 1100 GlobalBlock* gb = VG_(indexXA)( gbs, i ); local
1893 Bool gb = g > stats__max_gitree_size; 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

Completed in 2531 milliseconds

1 2 3