/aosp12/bionic/tests/ |
H A D | glob_test.cpp | 61 static void InstallFake(glob_t* g) { in InstallFake() 70 glob_t g = {}; in TEST() local 77 glob_t g = {}; in TEST() local 93 glob_t g = {}; in TEST() local 115 glob_t g = {}; in TEST() local 132 glob_t g = {}; in TEST() local 145 glob_t g = {}; in TEST() local 165 glob_t g = {}; in TEST() local 177 glob_t g = {}; in TEST() local 200 glob_t g = {}; in TEST() local [all …]
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/ |
H A D | VehiclePropertyStore.cpp | 40 MuxGuard g(mLock); in registerProperty() local 46 MuxGuard g(mLock); in writeValue() local 72 MuxGuard g(mLock); in removeValue() local 81 MuxGuard g(mLock); in removeValuesForProperty() local 87 MuxGuard g(mLock); in readAllValues() local 98 MuxGuard g(mLock); in readValuesForProperty() local 109 MuxGuard g(mLock); in readValueOrNull() local 118 MuxGuard g(mLock); in readValueOrNull() local 125 MuxGuard g(mLock); in getAllConfigs() local 135 MuxGuard g(mLock); in getConfigOrNull() local
|
H A D | SubscriptionManager.cpp | 93 MuxGuard g(mLock); in addOrUpdateSubscription() local 126 MuxGuard g(mLock); in distributeValuesToClients() local 149 MuxGuard g(mLock); in getSubscribedClients() local 234 MuxGuard g(mLock); in unsubscribe() local 280 MuxGuard g(mLock); in onCallbackDead() local
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/ |
H A D | GeneratorHub.cpp | 44 std::lock_guard<std::mutex> g(mLock); in registerGenerator() local 61 std::lock_guard<std::mutex> g(mLock); in unregisterGenerator() local 70 std::unique_lock<std::mutex> g(mLock); in run() local
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
H A D | ColorSpaceMatrix.java | 185 public float getRed(int r, int g, int b) { in getRed() 197 public float getGreen(int r, int g, int b) { in getGreen() 209 public float getBlue(int r, int g, int b) { in getBlue() 213 private float getRedf(float r, float g, float b) { in getRedf() 217 private float getGreenf(float r, float g, float b) { in getGreenf() 221 private float getBluef(float r, float g, float b) { in getBluef()
|
H A D | ImageFilterBwFilter.java | 45 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int r, int g, int b); in nativeApplyFilter() 59 int g = 0xFF & (rgb >> 8); in apply() local
|
/aosp12/frameworks/base/graphics/java/android/graphics/ |
H A D | Color.java | 339 private Color(float r, float g, float b, float a) { in Color() 634 double g = eotf.applyAsDouble(mComponents[1]); in luminance() local 842 float g = green(color); in toArgb() local 866 float g = ((color >> 8) & 0xff) / 255.0f; in valueOf() local 896 public static Color valueOf(float r, float g, float b) { in valueOf() 1061 @HalfFloat short g = Half.toHalf(green); in pack() local 1087 float g = ((color >> 8) & 0xff) / 255.0f; in convert() local 1111 float g = green(color); in convert() local 1168 float g = green(color); in convert() local 1224 double g = eotf.applyAsDouble(green(color)); in luminance() local [all …]
|
/aosp12/frameworks/base/core/java/com/android/internal/util/function/pooled/ |
H A D | OmniFunction.java | 69 abstract R invoke(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j, K k); in invoke() 166 public R apply(A a, B b, C c, D d, E e, F f, G g) { in apply() 171 public R apply(A a, B b, C c, D d, E e, F f, G g, H h) { in apply() 176 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i) { in apply() 181 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j) { in apply() 186 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j, K k) { in apply() 206 public void accept(A a, B b, C c, D d, E e, F f, G g) { in accept() 211 public void accept(A a, B b, C c, D d, E e, F f, G g, H h) { in accept() 216 public void accept(A a, B b, C c, D d, E e, F f, G g, H h, I i) { in accept() 221 public void accept(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j) { in accept() [all …]
|
/aosp12/system/bt/embdrv/g722/ |
H A D | g722_enc_dec.h | 54 #define NLDECOMPRESS_APPLY_GAIN(s,g) (((s) * (int32_t)(g)) >> 16) argument 56 #define NLDECOMPRESS_APPLY_GAIN_CONVERTED_DAC(s,g) (uint16_t)((uint16_t)(((s) * (int32_t)(g)) >> 20… argument 58 #define NLDECOMPRESS_APPLY_GAIN(s,g) (((int32_t)(s) * (int32_t)(g)) >> 16) argument 62 #define NLDECOMPRESS_PREPROCESS_PCM_SAMPLE_WITH_GAIN(s,g) NLDECOMPRESS_APPLY_GAIN_CONVERTED_DAC((s)… argument 63 #define NLDECOMPRESS_PREPROCESS_SAMPLE_WITH_GAIN(s,g) ((int16_t)NLDECOMPRESS_APPLY_GAIN((s),(g))) argument 66 #define NLDECOMPRESS_PREPROCESS_SAMPLE_WITH_GAIN(s,g) ((int16_t)(NLDECOMPRESS_APPLY_GAIN((s),(g)))) argument
|
/aosp12/frameworks/av/media/libstagefright/filters/ |
H A D | ColorConvert.cpp | 30 int32_t* r, int32_t* g, int32_t* b) { in YUVToRGB() 59 int32_t r, g, b; in convertYUV420spToARGB() local 81 int32_t r, g, b; in convertYUV420spToRGB888() local 99 uint8_t g = *src++; in convertRGBAToARGB() local
|
/aosp12/art/test/529-long-split/src/ |
H A D | Main.java | 37 int g = myField3; // ESI (by spilling ESI-EDI, see below) in testOddLow1() local 79 int g = myField3; // ESI (by spilling ESI-EDI, see below) in testNonFollowingHigh() local 119 int g = myField3; // ECX in testOddLow2() local
|
/aosp12/packages/apps/Nfc/nci/jni/ |
H A D | NativeNfcTag.cpp | 141 SyncEventGuard g(sReadEvent); in nativeNfcTag_abortWaits() local 147 SyncEventGuard g(sTransceiveEvent); in nativeNfcTag_abortWaits() local 151 SyncEventGuard g(sReconnectEvent); in nativeNfcTag_abortWaits() local 191 SyncEventGuard g(sReadEvent); in nativeNfcTag_doReadCompleted() local 285 SyncEventGuard g(sReadEvent); in nativeNfcTag_doRead() local 511 SyncEventGuard g(sReconnectEvent); in nativeNfcTag_doConnectStatus() local 534 SyncEventGuard g(sReconnectEvent); in nativeNfcTag_doDeactivateStatus() local 662 SyncEventGuard g(sReconnectEvent); in reSelect() local 897 SyncEventGuard g(sTransceiveEvent); in nativeNfcTag_doTransceiveStatus() local 920 SyncEventGuard g(sTransceiveEvent); in nativeNfcTag_notifyRfTimeout() local [all …]
|
/aosp12/art/test/439-swap-double/src/ |
H A D | Main.java | 35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles() 45 double g = 7.0; field in Main
|
/aosp12/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_ColorSpace.cpp | 58 uint8_t g = color >> 40 & 0xff; in convertColorLong() local 66 float g = halfToFloat((uint16_t)(color >> 32 & 0xffff)); in convertColorLong() local 87 jfloat d, jfloat e, jfloat f, jfloat g, jfloatArray xyzD50) { in ColorSpace_creator()
|
/aosp12/packages/apps/Gallery2/jni/filters/ |
H A D | redEyeMath.c | 22 int value(int r, int g, int b) { in value() 28 int g = src[p + 1]; in isRed() local 46 int g = src[p + 1]; in findPossible() local 106 void stuff(int r, int g, int b, unsigned char *img, int off) { in stuff() 144 int g = src[p + 1]; in filterRedEye() local
|
H A D | wbalance.c | 44 int g = histG[i]; in estmateWhite() local 70 int g = histG[i]; in estmateWhite() local 105 int g = 0; in estmateWhiteBox() local 159 int g = rgb[GREEN]; in JNIFUNCF() local
|
/aosp12/art/test/454-get-vreg/src/ |
H A D | Main.java | 23 int g = doNativeCall(); in testSimpleVReg() local 29 long g = doNativeCall(); in testPairVReg() local
|
/aosp12/hardware/google/easel/amber/camera/libhdrplusclient/ |
H A D | HdrPlusClientUtils.cpp | 30 static status_t getRgb(uint8_t *r, uint8_t *g, uint8_t* b, uint32_t x, uint32_t y, in getRgb() 102 uint8_t r, g, b; in writePpm() local 168 uint8_t r, g, b; in comparePpm() local
|
/aosp12/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
H A D | db_utilities_linalg.h | 257 inline int db_ScalarProduct512_s(const short *f,const short *g) in db_ScalarProduct512_s() 270 inline int db_ScalarProduct32_s(const short *f,const short *g) in db_ScalarProduct32_s() 292 inline int db_ScalarProduct128_s(const short *f,const short *g) in db_ScalarProduct128_s() 597 inline float db_ScalarProduct128Aligned16_f(const float *f,const float *g) in db_ScalarProduct128Aligned16_f()
|
/aosp12/art/test/484-checker-register-hints/src/ |
H A D | Main.java | 46 int g = live3; in test1() local 81 int g = live3; in test2() local 106 int g = live3; in test3() local
|
/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
H A D | ImageUtils.cpp | 30 int r,g,b, a; in rgba2yvu() local 75 int r,g,b; in rgb2yvu() local 118 int r,g,b, nr, ng, nb, val; in rgb2gray() local 148 int r,g,b, nr, ng, nb, val; in rgb2gray() local 192 int y,v,u, r, g, b; in yvu2rgb() local 237 int y,v,u, r, g, b; in yvu2bgr() local
|
/aosp12/art/test/404-optimizing-allocator/src/ |
H A D | Main.java | 87 int g = 0; in $opt$reg$TestMultipleLive() local 129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1() 150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
|
/aosp12/art/test/405-optimizing-long-allocator/src/ |
H A D | Main.java | 93 long g = 0; in $opt$TestMultipleLive() local 135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() 156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
|
/aosp12/art/test/ExceptionHandle/ |
H A D | ExceptionHandle.java | 35 void g(int doThrow) throws Exception { in g() method in ExceptionHandle
|
/aosp12/bionic/libc/upstream-netbsd/lib/libc/regex/ |
H A D | regfree.c | 106 struct re_guts *g; in __weak_alias() local
|