/external/stressapptest/src/ |
D | main.cc | 21 Sat *sat = SatFactory(); in main() local 22 if (sat == NULL) { in main() 27 if (!sat->ParseArgs(argc, argv)) { in main() 29 sat->bad_status(); in main() 30 } else if (!sat->Initialize()) { in main() 32 sat->bad_status(); in main() 33 } else if (!sat->Run()) { in main() 35 sat->bad_status(); in main() 37 sat->PrintResults(); in main() 38 if (!sat->Cleanup()) { in main() [all …]
|
D | Makefile.am | 10 CFILES += sat.cc 22 HFILES += sat.h
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
D | program_lexer.l | 166 sat (_SAT)? 186 ABS{sz}{cc}{sat} { return_opcode( 1, VECTOR_OP, ABS, 3); } 187 ADD{sz}{cc}{sat} { return_opcode( 1, BIN_OP, ADD, 3); } 190 CMP{sat} { return_opcode(require_ARB_fp, TRI_OP, CMP, 3); } 191 COS{szf}{cc}{sat} { return_opcode(require_ARB_fp, SCALAR_OP, COS, 3); } 193 DDX{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDX, 3); } 194 DDY{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDY, 3); } 195 DP3{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP3, 3); } 196 DP4{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP4, 3); } 197 DPH{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DPH, 3); } [all …]
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 166 sat (_SAT)? 186 ABS{sz}{cc}{sat} { return_opcode( 1, VECTOR_OP, ABS, 3); } 187 ADD{sz}{cc}{sat} { return_opcode( 1, BIN_OP, ADD, 3); } 190 CMP{sat} { return_opcode(require_ARB_fp, TRI_OP, CMP, 3); } 191 COS{szf}{cc}{sat} { return_opcode(require_ARB_fp, SCALAR_OP, COS, 3); } 193 DDX{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDX, 3); } 194 DDY{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDY, 3); } 195 DP3{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP3, 3); } 196 DP4{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP4, 3); } 197 DPH{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DPH, 3); } [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
D | nvfx_fragprog.c | 206 if (insn.sat) in nvfx_fp_emit() 447 int mask, sat, unit = 0; in nvfx_fragprog_parse_instruction() local 528 sat = (finst->Instruction.Saturate == TGSI_SAT_ZERO_ONE); in nvfx_fragprog_parse_instruction() 532 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, abs(src[0]), none, none)); in nvfx_fragprog_parse_instruction() 535 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none)); in nvfx_fragprog_parse_instruction() 540 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none)); in nvfx_fragprog_parse_instruction() 547 insn = arith(sat, MOV, dst, mask, src[2], none, none); in nvfx_fragprog_parse_instruction() 551 insn = arith(sat, MOV, dst, mask, src[1], none, none); in nvfx_fragprog_parse_instruction() 556 nvfx_fp_emit(fpc, arith(sat, COS, dst, mask, src[0], none, none)); in nvfx_fragprog_parse_instruction() 561 …nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, swz(src[0], Z, W, Z, W… in nvfx_fragprog_parse_instruction() [all …]
|
D | nvfx_vertprog.c | 315 if(insn.sat) { in nvfx_vp_emit() 468 boolean sat = FALSE; in nvfx_vertprog_parse_instruction() local 544 sat = TRUE; in nvfx_vertprog_parse_instruction() 552 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, abs(src[0]), none, none)); in nvfx_vertprog_parse_instruction() 555 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1])); in nvfx_vertprog_parse_instruction() 563 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none)); in nvfx_vertprog_parse_instruction() 570 insn = arith(sat, VEC, MOV, dst, mask, src[2], none, none); in nvfx_vertprog_parse_instruction() 574 insn = arith(sat, VEC, MOV, dst, mask, src[1], none, none); in nvfx_vertprog_parse_instruction() 579 nvfx_vp_emit(vpc, arith(sat, SCA, COS, dst, mask, none, none, src[0])); in nvfx_vertprog_parse_instruction() 584 …nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, swz(tmp, X, X, X, X), none, swz(tmp, Y, Y, Y, Y)… in nvfx_vertprog_parse_instruction() [all …]
|
D | nvfx_shader.h | 441 uint8_t sat : 1; member 452 nvfx_insn(boolean sat, unsigned op, int unit, struct nvfx_reg dst, unsigned mask, struct nvfx_src s… in nvfx_insn() argument 458 .sat = sat, in nvfx_insn()
|
/external/mesa3d/src/gallium/drivers/nv30/ |
D | nvfx_fragprog.c | 206 if (insn.sat) in nvfx_fp_emit() 447 int mask, sat, unit = 0; in nvfx_fragprog_parse_instruction() local 528 sat = (finst->Instruction.Saturate == TGSI_SAT_ZERO_ONE); in nvfx_fragprog_parse_instruction() 532 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, abs(src[0]), none, none)); in nvfx_fragprog_parse_instruction() 535 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none)); in nvfx_fragprog_parse_instruction() 540 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none)); in nvfx_fragprog_parse_instruction() 547 insn = arith(sat, MOV, dst, mask, src[2], none, none); in nvfx_fragprog_parse_instruction() 551 insn = arith(sat, MOV, dst, mask, src[1], none, none); in nvfx_fragprog_parse_instruction() 556 nvfx_fp_emit(fpc, arith(sat, COS, dst, mask, src[0], none, none)); in nvfx_fragprog_parse_instruction() 561 …nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, swz(src[0], Z, W, Z, W… in nvfx_fragprog_parse_instruction() [all …]
|
D | nvfx_vertprog.c | 315 if(insn.sat) { in nvfx_vp_emit() 468 boolean sat = FALSE; in nvfx_vertprog_parse_instruction() local 544 sat = TRUE; in nvfx_vertprog_parse_instruction() 552 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, abs(src[0]), none, none)); in nvfx_vertprog_parse_instruction() 555 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1])); in nvfx_vertprog_parse_instruction() 563 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none)); in nvfx_vertprog_parse_instruction() 570 insn = arith(sat, VEC, MOV, dst, mask, src[2], none, none); in nvfx_vertprog_parse_instruction() 574 insn = arith(sat, VEC, MOV, dst, mask, src[1], none, none); in nvfx_vertprog_parse_instruction() 579 nvfx_vp_emit(vpc, arith(sat, SCA, COS, dst, mask, none, none, src[0])); in nvfx_vertprog_parse_instruction() 584 …nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, swz(tmp, X, X, X, X), none, swz(tmp, Y, Y, Y, Y)… in nvfx_vertprog_parse_instruction() [all …]
|
D | nvfx_shader.h | 441 uint8_t sat : 1; member 452 nvfx_insn(boolean sat, unsigned op, int unit, struct nvfx_reg dst, unsigned mask, struct nvfx_src s… in nvfx_insn() argument 458 .sat = sat, in nvfx_insn()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowColorMatrix.java | 38 public void setSaturation(float sat) { in setSaturation() argument 42 final float invSat = 1 - sat; in setSaturation() 47 m[0] = R + sat; in setSaturation() 52 m[6] = G + sat; in setSaturation() 57 m[12] = B + sat; in setSaturation()
|
/external/skia/src/effects/ |
D | SkColorMatrix.cpp | 115 void SkColorMatrix::setSaturation(SkScalar sat) { in setSaturation() argument 118 const SkScalar R = SkScalarMul(kHueR, SK_Scalar1 - sat); in setSaturation() 119 const SkScalar G = SkScalarMul(kHueG, SK_Scalar1 - sat); in setSaturation() 120 const SkScalar B = SkScalarMul(kHueB, SK_Scalar1 - sat); in setSaturation() 122 setrow(fMat + 0, R + sat, G, B); in setSaturation() 123 setrow(fMat + 5, R, G + sat, B); in setSaturation() 124 setrow(fMat + 10, R, G, B + sat); in setSaturation()
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkColorMatrix.cpp | 115 void SkColorMatrix::setSaturation(SkScalar sat) { in setSaturation() argument 118 const SkScalar R = SkScalarMul(kHueR, SK_Scalar1 - sat); in setSaturation() 119 const SkScalar G = SkScalarMul(kHueG, SK_Scalar1 - sat); in setSaturation() 120 const SkScalar B = SkScalarMul(kHueB, SK_Scalar1 - sat); in setSaturation() 122 setrow(fMat + 0, R + sat, G, B); in setSaturation() 123 setrow(fMat + 5, R, G + sat, B); in setSaturation() 124 setrow(fMat + 10, R, G, B + sat); in setSaturation()
|
/external/chromium_org/chrome/browser/history/ |
D | history_service_factory.cc | 17 Profile* profile, Profile::ServiceAccessType sat) { in GetForProfile() argument 20 sat != Profile::EXPLICIT_ACCESS) in GetForProfile() 30 Profile* profile, Profile::ServiceAccessType sat) { in GetForProfileIfExists() argument 33 sat != Profile::EXPLICIT_ACCESS) in GetForProfileIfExists()
|
D | history_service_factory.h | 19 Profile* profile, Profile::ServiceAccessType sat); 22 Profile* profile, Profile::ServiceAccessType sat);
|
/external/chromium/chrome/browser/profiles/ |
D | profile.cc | 322 virtual HistoryService* GetHistoryService(ServiceAccessType sat) { in GetHistoryService() argument 323 if (sat == EXPLICIT_ACCESS) in GetHistoryService() 324 return profile_->GetHistoryService(sat); in GetHistoryService() 334 virtual FaviconService* GetFaviconService(ServiceAccessType sat) { in GetFaviconService() argument 335 if (sat == EXPLICIT_ACCESS) in GetFaviconService() 336 return profile_->GetFaviconService(sat); in GetFaviconService() 346 virtual WebDataService* GetWebDataService(ServiceAccessType sat) { in GetWebDataService() argument 347 if (sat == EXPLICIT_ACCESS) in GetWebDataService() 348 return profile_->GetWebDataService(sat); in GetWebDataService() 358 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) { in GetPasswordStore() argument [all …]
|
D | profile_impl.h | 68 virtual FaviconService* GetFaviconService(ServiceAccessType sat); 69 virtual HistoryService* GetHistoryService(ServiceAccessType sat); 72 virtual WebDataService* GetWebDataService(ServiceAccessType sat); 74 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat);
|
/external/clang/test/CodeGen/ |
D | struct-matching-constraint.c | 6 void b(uint16x8_t sat, uint16x8_t luma) in b() argument 10 :"=w"(luma), "=w"(sat) in b()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonIntrinsics.td | 78 !strconcat("$dst = ", !strconcat(opc , "($src1, $src2):sat")), 142 !strconcat("$dst = ", !strconcat(opc , "($src):sat")), 175 !strconcat("$dst = ", !strconcat(opc , "($src1, $src2):sat")), 193 !strconcat("$dst = ", !strconcat(opc , "($src1, $src2):rnd:sat")), 199 !strconcat("$dst = ", !strconcat(opc , "($src1, $src2):crnd:sat")), 215 !strconcat("$dst = ", !strconcat(opc , "($src1.L, $src2.H):sat")), 220 !strconcat("$dst = ", !strconcat(opc , "($src1.H, $src2.H):sat")), 225 !strconcat("$dst = ", !strconcat(opc , "($src1.L, $src2.H):sat")), 230 !strconcat("$dst = ", !strconcat(opc , "($src1.H, $src2.L):sat")), 235 !strconcat("$dst = ", !strconcat(opc , "($src1.L, $src2.L):sat")), [all …]
|
/external/chromium_org/chrome/browser/favicon/ |
D | favicon_service_factory.cc | 17 Profile* profile, Profile::ServiceAccessType sat) { in GetForProfile() argument 21 } else if (sat == Profile::EXPLICIT_ACCESS) { in GetForProfile()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | FlameChart.js | 296 _colorPairForID: function(id, sat) argument 298 if (typeof sat !== "number") 299 sat = 100; 303 colorPairs[id] = colorPair = this._createPair(this._currentColorIndex++, sat); 321 _createPair: function(index, sat) argument 324 …dex: index, highlighted: "hsla(" + hue + ", " + sat + "%, 33%, 0.7)", normal: "hsla(" + hue + ", "…
|
/external/chromium/android/autofill/ |
D | profile_android.h | 159 virtual FaviconService* GetFaviconService(ServiceAccessType sat) { NOTREACHED(); return NULL; } in GetFaviconService() argument 160 virtual HistoryService* GetHistoryService(ServiceAccessType sat) { NOTREACHED(); return NULL; } in GetHistoryService() argument 163 virtual WebDataService* GetWebDataService(ServiceAccessType sat) { NOTREACHED(); return NULL; } in GetWebDataService() argument 165 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) { NOTREACHED(); return NULL; } in GetPasswordStore() argument
|
/external/chromium_org/third_party/icu/source/data/locales/ |
D | sr_Latn.txt | 235 one{"{0} sat"} 279 one{"{0} sat"} 280 other{"{0} sat"}
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
D | chrome_notifier_service_factory.h | 21 Profile* profile, Profile::ServiceAccessType sat);
|
/external/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 944 def cvtff : PatFrag<(ops node:$val, node:$dty, node:$sty, node:$rd, node:$sat), 945 (cvt node:$val, node:$dty, node:$sty, node:$rd, node:$sat), [{ 949 def cvtss : PatFrag<(ops node:$val, node:$dty, node:$sty, node:$rd, node:$sat), 950 (cvt node:$val, node:$dty, node:$sty, node:$rd, node:$sat), [{ 954 def cvtsu : PatFrag<(ops node:$val, node:$dty, node:$sty, node:$rd, node:$sat), 955 (cvt node:$val, node:$dty, node:$sty, node:$rd, node:$sat), [{ 959 def cvtus : PatFrag<(ops node:$val, node:$dty, node:$sty, node:$rd, node:$sat), 960 (cvt node:$val, node:$dty, node:$sty, node:$rd, node:$sat), [{ 964 def cvtuu : PatFrag<(ops node:$val, node:$dty, node:$sty, node:$rd, node:$sat), 965 (cvt node:$val, node:$dty, node:$sty, node:$rd, node:$sat), [{ [all …]
|