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

1 2 3 4

  /external/stressapptest/src/
main.cc 15 // sat.cc : a stress test for stressful testing
18 #include "sat.h"
21 Sat *sat = SatFactory(); local
22 if (sat == NULL) {
23 logprintf(0, "Process Error: failed to allocate Sat object\n");
27 if (!sat->ParseArgs(argc, argv)) {
28 logprintf(0, "Process Error: Sat::ParseArgs() failed\n");
29 sat->bad_status();
30 } else if (!sat->Initialize())
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arch7em.s 129 sat: label
thumb32.s 699 sat: label
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
blend.h 108 simdscalar sat = _simd_min_ps(src.w, _simd_sub_ps(_simd_set1_ps(1.0), dst.w)); local
109 result.x = sat;
110 result.y = sat;
111 result.z = sat;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ColorFiltersMutateActivity.java 73 ObjectAnimator sat = ObjectAnimator.ofFloat(this, "saturation", 1.0f); local
74 sat.setDuration(1000);
75 sat.setRepeatCount(ObjectAnimator.INFINITE);
76 sat.setRepeatMode(ObjectAnimator.REVERSE);
77 sat.start();
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_asm.h 86 unsigned sat:1; /* saturate result between 0..1 */ member in struct:etna_inst
112 * opcode, cond, sat, dst_use, dst_amode,
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_fragshader.c 273 GLuint sat = inst->DstReg[optype].dstMod & GL_SATURATE_BIT_ATI; local
284 if (sat || (pc == (shader->numArithInstr[pass] - 1) &&
  /external/skia/gm/
hsl.cpp 41 static float sat(float r, float g, float b) { return max(r,g,b) - min(r,g,b); } function
88 set_sat(&R,&G,&B, sat(dr,dg,db));
101 set_sat(&R,&G,&B, sat(*sr,*sg,*sb));
  /external/skqp/gm/
hsl.cpp 41 static float sat(float r, float g, float b) { return max(r,g,b) - min(r,g,b); } function
88 set_sat(&R,&G,&B, sat(dr,dg,db));
101 set_sat(&R,&G,&B, sat(*sr,*sg,*sb));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorSVRectView.java 101 float sat = (i % w) / (float) w; local
103 hsv[1] = sat;
151 float sat = 1 - (mDotY - mBorder) / (mHeight - 2 * mBorder); local
152 if (sat > 1) {
153 sat = 1;
157 mHSVO[2] = sat;
181 double sat = mHSVO[1]; local
185 mDotX = (float) (mBorder + (mHeight - 2 * mBorder) * sat);
ColorRectView.java 104 float sat = 1 - (mDotY - mBorder) / (mHeight - 2 * mBorder); local
105 if (sat > 1) {
106 sat = 1;
111 mHSVO[1] = sat;
181 double sat = mHSVO[1]; local
184 mDotY = (float) ((1 - sat) * (mHeight - 2 * mBorder) + mBorder);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterChanSat.java 112 int []sat = new int[7]; local
113 for(int i = 0;i<sat.length ;i ++){
114 sat[i] = mParameters.getValue(i);
123 mScript.set_saturation(sat);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nvfx_fragprog.c 208 if (insn.sat)
452 int mask, sat, unit = 0; local
533 sat = finst->Instruction.Saturate;
537 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none));
542 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none));
549 insn = arith(sat, MOV, dst, mask, src[2], none, none);
553 insn = arith(sat, MOV, dst, mask, src[1], none, none);
558 nvfx_fp_emit(fpc, arith(sat, COS, dst, mask, src[0], none, none));
563 nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, swz(src[0], Z, W, Z, W), none, none));
565 nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, src[0], none, none))
    [all...]
nvfx_vertprog.c 316 if(insn.sat) {
469 bool sat = false; local
545 sat = true;
553 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1]));
561 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none));
568 insn = arith(sat, VEC, MOV, dst, mask, src[2], none, none);
572 insn = arith(sat, VEC, MOV, dst, mask, src[1], none, none);
577 nvfx_vp_emit(vpc, arith(sat, SCA, COS, dst, mask, none, none, src[0]));
582 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, swz(tmp, X, X, X, X), none, swz(tmp, Y, Y, Y, Y)));
585 nvfx_vp_emit(vpc, arith(sat, VEC, DP3, dst, mask, src[0], src[1], none))
    [all...]
  /frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
DemoModeController.java 130 final float sat = 1 - (x / (float)w); local
132 final int color = Color.HSVToColor(new float[]{hue, sat, val});
133 if (DEBUG) Log.d(TAG, String.format("hsv=(%s,%s,%s) argb=#%08x", hue, sat, val, color));
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/
stdfix.h 37 #undef sat macro
40 #define sat _Sat macro

Completed in 574 milliseconds

1 2 3 4