Home
last modified time | relevance | path

Searched refs:Condition (Results 1 – 25 of 783) sorted by relevance

12345678910>>...32

/external/vixl/src/aarch32/
Ddisasm-aarch32.h43 Condition first_condition_;
44 Condition condition_;
50 condition_ = Condition((condition_.GetCondition() & 0xe) | (it_mask_ >> 3)); in Advance()
59 void Set(Condition first_condition, uint16_t mask) { in Set()
63 Condition GetFirstCondition() const { return first_condition_; } in GetFirstCondition()
64 Condition GetCurrentCondition() const { return condition_; } in GetCurrentCondition()
100 Condition cond_;
103 ConditionPrinter(const ITBlock& it_block, Condition cond) in ConditionPrinter()
106 Condition GetCond() const { return cond_; } in GetCond()
287 virtual DisassemblerStream& operator<<(Condition cond) {
[all …]
Dassembler-aarch32.h40 Condition first_condition_;
52 void CheckIT(Condition condition) { in CheckIT()
60 void PerformCheckIT(Condition condition);
64 Condition((first_condition_.GetCondition() & 0xe) | (it_mask_ >> 3)); in AdvanceIT()
174 void SetIT(Condition first_condition, uint16_t it_mask) { in SetIT()
182 bool OutsideITBlockAndAlOrLast(Condition cond) { in OutsideITBlockAndAlOrLast()
227 void it(Condition cond) { it(cond, 0x8); } in it()
228 void itt(Condition cond) { it(cond, 0x4); } in itt()
229 void ite(Condition cond) { it(cond, 0xc); } in ite()
230 void ittt(Condition cond) { it(cond, 0x2); } in ittt()
[all …]
Dmacro-assembler-aarch32.h184 Condition* cond,
235 Condition cond_;
255 void HandleOutOfBoundsImmediate(Condition cond, Register tmp, uint32_t imm);
339 MemOperand MemOperandComputationHelper(Condition cond,
355 MemOperand MemOperandComputationHelper(Condition cond,
428 Condition* cond = NULL) {
552 void Adr(Condition cond, Register rd, RawLiteral* literal) { in Adr()
575 void Ldr(Condition cond, Register rt, RawLiteral* literal) { in Ldr()
596 void Ldrb(Condition cond, Register rt, RawLiteral* literal) { in Ldrb()
617 void Ldrd(Condition cond, Register rt, Register rt2, RawLiteral* literal) { in Ldrd()
[all …]
Ddisasm-aarch32.cc1127 void Disassembler::adc(Condition cond, in adc()
1141 void Disassembler::adcs(Condition cond, in adcs()
1155 void Disassembler::add(Condition cond, in add()
1169 void Disassembler::add(Condition cond, Register rd, const Operand& operand) { in add()
1175 void Disassembler::adds(Condition cond, in adds()
1194 void Disassembler::addw(Condition cond, in addw()
1207 void Disassembler::adr(Condition cond, in adr()
1217 void Disassembler::and_(Condition cond, in and_()
1231 void Disassembler::ands(Condition cond, in ands()
1245 void Disassembler::asr(Condition cond, in asr()
[all …]
/external/v8/src/wasm/baseline/
Dliftoff-assembler-defs.h88 constexpr Condition kEqual = equal;
89 constexpr Condition kUnequal = not_equal;
90 constexpr Condition kSignedLessThan = less;
91 constexpr Condition kSignedLessEqual = less_equal;
92 constexpr Condition kSignedGreaterThan = greater;
93 constexpr Condition kSignedGreaterEqual = greater_equal;
94 constexpr Condition kUnsignedLessThan = below;
95 constexpr Condition kUnsignedLessEqual = below_equal;
96 constexpr Condition kUnsignedGreaterThan = above;
97 constexpr Condition kUnsignedGreaterEqual = above_equal;
[all …]
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.h450 void and_(Register rd, Register rn, Operand o, Condition cond = AL);
453 void eor(Register rd, Register rn, Operand o, Condition cond = AL);
456 void sub(Register rd, Register rn, Operand o, Condition cond = AL);
457 void subs(Register rd, Register rn, Operand o, Condition cond = AL);
460 void rsb(Register rd, Register rn, Operand o, Condition cond = AL);
461 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL);
464 void add(Register rd, Register rn, Operand o, Condition cond = AL);
466 void adds(Register rd, Register rn, Operand o, Condition cond = AL);
469 void adc(Register rd, Register rn, Operand o, Condition cond = AL);
471 void adcs(Register rd, Register rn, Operand o, Condition cond = AL);
[all …]
Dassembler_arm.cc78 void Assembler::EmitType01(Condition cond,
98 void Assembler::EmitType5(Condition cond, int32_t offset, bool link) {
107 void Assembler::EmitMemOp(Condition cond,
124 void Assembler::EmitMemOpAddressMode3(Condition cond,
138 void Assembler::EmitMultiMemOp(Condition cond,
155 void Assembler::EmitShiftImmediate(Condition cond, in EmitShiftImmediate()
172 void Assembler::EmitShiftRegister(Condition cond, in EmitShiftRegister()
192 void Assembler::and_(Register rd, Register rn, Operand o, Condition cond) {
197 void Assembler::eor(Register rd, Register rn, Operand o, Condition cond) {
202 void Assembler::sub(Register rd, Register rn, Operand o, Condition cond) {
[all …]
/external/v8/src/arm/
Dassembler-arm.h714 void b(int branch_offset, Condition cond = al,
716 void bl(int branch_offset, Condition cond = al,
719 void blx(Register target, Condition cond = al); // v5 and above
720 void bx(Register target, Condition cond = al); // v5 and above, plus v4t
723 void b(Label* L, Condition cond = al);
724 void b(Condition cond, Label* L) { b(L, cond); } in b()
725 void bl(Label* L, Condition cond = al);
726 void bl(Condition cond, Label* L) { bl(L, cond); } in bl()
732 SBit s = LeaveCC, Condition cond = al);
734 Condition cond = al);
[all …]
Dmacro-assembler-arm.h104 void Push(Register src1, Register src2, Condition cond = al) {
114 void Push(Register src1, Register src2, Register src3, Condition cond = al) {
130 Condition cond = al) {
152 Register src5, Condition cond = al) {
182 void Pop(Register src1, Register src2, Condition cond = al) {
193 void Pop(Register src1, Register src2, Register src3, Condition cond = al) {
210 Condition cond = al) {
278 void Assert(Condition cond, AbortReason reason);
281 void Check(Condition cond, AbortReason reason);
314 void Call(Register target, Condition cond = al);
[all …]
Dassembler-arm.cc611 Condition Assembler::GetCondition(Instr instr) { in GetCondition()
943 Condition cond = Instruction::ConditionField(instr); in print()
1146 Condition cond) { in Move32BitImmediate()
1198 Condition cond = Instruction::ConditionField(instr); in AddrMode1()
1420 void Assembler::b(int branch_offset, Condition cond, RelocInfo::Mode rmode) { in b()
1434 void Assembler::bl(int branch_offset, Condition cond, RelocInfo::Mode rmode) { in bl()
1452 void Assembler::blx(Register target, Condition cond) { in blx()
1457 void Assembler::bx(Register target, Condition cond) { in bx()
1463 void Assembler::b(Label* L, Condition cond) { in b()
1469 void Assembler::bl(Label* L, Condition cond) { in bl()
[all …]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCondition.java13 public abstract class Condition<T> { class
17 Condition<O> apply(I value, Description mismatch); in apply()
20 private Condition() { } in Condition() method in Condition
23 public abstract <U> Condition<U> and(Step<? super T, U> mapping); in and()
26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); } in then()
29 public static <T> Condition<T> notMatched() { in notMatched()
30 return (Condition<T>) NOT_MATCHED; in notMatched()
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) { in matched()
37 private static final class Matched<T> extends Condition<T> {
57 public <U> Condition<U> and(Step<? super T, U> next) { in and()
[all …]
/external/mockito/src/test/java/org/mockitoutil/
DConditions.java9 import org.assertj.core.api.Condition;
20 public static Condition<Throwable> onlyThoseClassesInStackTrace(final String... classes) { in onlyThoseClassesInStackTrace()
21 return new Condition<Throwable>() { in onlyThoseClassesInStackTrace()
41 public static Condition<StackTraceElement[]> onlyThoseClasses(final String... classes) {
42 return new Condition<StackTraceElement[]>() {
61 public static Condition<Throwable> firstMethodInStackTrace(final String method) {
65 …public static Condition<Throwable> methodInStackTraceAt(final int stackTraceIndex, final String me…
66 return new Condition<Throwable>() {
83 public static Condition<Object> bridgeMethod(final String methodName) {
84 return new Condition<Object>() {
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.logicalConvert.frag.out9 0:3 Condition
20 0:5 Condition
31 0:7 Condition
42 0:9 Condition
53 0:11 Condition
64 0:13 Condition
75 0:15 Condition
86 0:17 Condition
97 0:19 Condition
108 0:21 Condition
[all …]
Dloops.frag.out14 0:58 Loop Condition
20 0:59 Condition
39 0:63 Condition
66 0:73 Loop Condition
79 0:78 Loop Condition
92 0:80 Condition
105 0:87 Loop Condition
118 0:92 Loop Condition
138 0:97 Loop Condition
151 0:99 Condition
[all …]
Duint.frag.out35 0:27 Condition
44 0:29 Condition
53 0:31 Condition
62 0:41 Condition
71 0:43 Condition
80 0:45 Condition
109 0:55 Condition
120 0:57 Condition
134 0:59 Condition
150 0:62 Condition
[all …]
DearlyReturnDiscard.frag.out15 0:26 Condition
28 0:31 Condition
43 0:36 Condition
55 0:42 Condition
65 0:43 Condition
76 0:45 Condition
87 0:48 Condition
104 0:55 Condition
145 0:26 Condition
158 0:31 Condition
[all …]
/external/syzkaller/vendor/cloud.google.com/go/storage/
Dbucket.go271 Condition LifecycleCondition member
550 Condition: &raw.BucketLifecycleRuleCondition{
551 Age: r.Condition.AgeInDays,
552 MatchesStorageClass: r.Condition.MatchesStorageClasses,
553 NumNewerVersions: r.Condition.NumNewerVersions,
557 switch r.Condition.Liveness {
559 rr.Condition.IsLive = nil
561 rr.Condition.IsLive = googleapi.Bool(true)
563 rr.Condition.IsLive = googleapi.Bool(false)
566 if !r.Condition.CreatedBefore.IsZero() {
[all …]
/external/v8/src/s390/
Dassembler-s390.h522 bool is_near(Label* L, Condition cond);
615 inline void name(Condition m1, const Operand& i2) { \
639 inline void name(Condition m1, Register r2) { \
703 void bc(Condition cond, const MemOperand& opnd) { in S390_RX_A_OPCODE_LIST()
707 void bc(Condition cond, Register x2, Register b2, const Operand& d2) { in bc()
736 void pfd(Condition cond, const MemOperand& opnd) { in S390_RXY_A_OPCODE_LIST()
740 void pfd(Condition cond, Register x2, Register b2, const Operand& d2) { in pfd()
774 void name(Register r1, Condition m3, Register b2, const Operand& d2) { \
777 void name(Register r1, Condition m3, const MemOperand& opnd) { \
804 void name(Register r1, Condition m3, Register b2, const Operand& d2) { \
[all …]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVError.h51 #define SPIRVCK(Condition,ErrCode,ErrMsg) \ argument
52 getErrorLog().checkError(Condition, SPIRVEC_##ErrCode, std::string()+ErrMsg,\
53 #Condition, __FILE__, __LINE__)
56 #define SPIRVCKRT(Condition,ErrCode,ErrMsg) \ argument
57 if (!getErrorLog().checkError(Condition, SPIRVEC_##ErrCode,\
58 std::string()+ErrMsg, #Condition, __FILE__, __LINE__))\
91 bool checkError(bool Condition, SPIRVErrorCode ErrCode,
/external/swiftshader/third_party/llvm-7.0/llvm/tools/msbuild/
DLLVM.Cpp.Common.props22 …<OutDirWasSpecified Condition=" '$(OutDir)'!='' AND '$(OutDirWasSpecified)'=='' ">true</OutDirWasS…
23 …<OutDirWasSpecified Condition=" '$(OutDir)'=='' AND '$(OutDirWasSpecified)'=='' ">false</OutDirWas…
25 …<IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'!=''">$(IntermediateOutputPath)<…
26 … <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'==''">$(Configuration)\</IntDir>
27 …<OutDir Condition="'$(OutDir)'=='' AND '$(SolutionDir)' != ''">$(SolutionDir)$(Configuration)\</Ou…
28 <OutDir Condition="'$(OutDir)'=='' AND '$(SolutionDir)' == ''">$(IntDir)</OutDir>
29 <DebuggerFlavor Condition="'$(DebuggerFlavor)'==''">WindowsLocalDebugger</DebuggerFlavor>
41 …<LLVMInstallDir Condition="'$(LLVMInstallDir)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow64…
45 …<Import Project="$(VCTargetsPath)\Microsoft.Cpp.WindowsSDK.props" Condition="Exists('$(VCTargetsPa…
52 …<IncludePath Condition="'$(IncludePath)' == ''">$(IncludePath);$(VC_IncludePath);$(WindowsSDK_Incl…
[all …]
DLLVM.Cpp.Common.targets44 <Warning Condition="'%(ClCompile.DebugInformationFormat)' == 'ProgramDatabase'"
47 <Warning Condition="'%(ClCompile.DebugInformationFormat)' == 'EditAndContinue'"
52 <Warning Condition="'%(ClCompile.EnableFiberSafeOptimizations)' == 'true'"
57 <Warning Condition="'%(ClCompile.WholeProgramOptimization)' == 'true'"
62 <Warning Condition="'%(ClCompile.IgnoreStandardIncludePath)' == 'true'"
67 <Warning Condition="'%(ClCompile.SmallerTypeCheck)' == 'true'"
72 <Warning Condition="'%(ClCompile.BasicRuntimeChecks)' != 'Default'"
77 <Warning Condition="'(ClCompile.EnableParallelCodeGeneration)' == 'true'"
82 <Warning Condition="'%(ClCompile.CreateHotpatchableImage)' == 'true'"
87 <Warning Condition="'%(ClCompile.ForceConformanceInForLoopScope)' == 'false'"
[all …]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/xml/
DHasXPath.java3 import org.hamcrest.Condition;
15 import static org.hamcrest.Condition.matched;
16 import static org.hamcrest.Condition.notMatched;
27 private static final Condition.Step<Object,String> NODE_EXISTS = nodeExists();
74 private Condition<Object> evaluated(Node item, Description mismatch) { in evaluated()
83 private static Condition.Step<Object, String> nodeExists() { in nodeExists()
84 return new Condition.Step<Object, String>() { in nodeExists()
86 public Condition<String> apply(Object value, Description mismatch) { in nodeExists()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/msbuild/Platformx64/
DToolset.props5 …<ExecutablePath Condition="'$(ExecutablePath)' == ''">$(VC_ExecutablePath_x64);$(WindowsSDK_Execut…
6 <ReferencePath Condition="'$(ReferencePath)' == ''">$(VC_ReferencesPath_x64);</ReferencePath>
7 …<LibraryPath Condition="'$(LibraryPath)' == ''">$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64…
8 …<ExcludePath Condition="'$(ExcludePath)' == ''">$(VC_IncludePath);$(WindowsSDK_IncludePath);$(MSBu…
9 …<DebugCppRuntimeFilesPath Condition="'$(DebugCppRuntimeFilesPath)' == ''">$(VCToolsInstallDir)redi…
/external/swiftshader/third_party/llvm-7.0/llvm/tools/msbuild/Platformx86/
DToolset.props5 …<ExecutablePath Condition="'$(ExecutablePath)' == ''">$(VC_ExecutablePath_x86);$(WindowsSDK_Execut…
6 <ReferencePath Condition="'$(ReferencePath)' == ''">$(VC_ReferencesPath_x86);</ReferencePath>
7 …<LibraryPath Condition="'$(LibraryPath)' == ''">$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86…
8 …<ExcludePath Condition="'$(ExcludePath)' == ''">$(VC_IncludePath);$(WindowsSDK_IncludePath);$(MSBu…
9 …<DebugCppRuntimeFilesPath Condition="'$(DebugCppRuntimeFilesPath)' == ''">$(VCToolsInstallDir)redi…
/external/catch2/projects/SelfTest/Baselines/
Dconsole.std.approved.txt59 Condition.tests.cpp:<line number>
62 Condition.tests.cpp:<line number>: FAILED:
65 Condition.tests.cpp:<line number>: FAILED:
68 Condition.tests.cpp:<line number>: FAILED:
73 Condition.tests.cpp:<line number>: FAILED:
78 Condition.tests.cpp:<line number>: FAILED:
83 Condition.tests.cpp:<line number>: FAILED:
88 Condition.tests.cpp:<line number>: FAILED:
93 Condition.tests.cpp:<line number>: FAILED:
305 Condition.tests.cpp:<line number>
[all …]

12345678910>>...32