Home
last modified time | relevance | path

Searched refs:sw1 (Results 1 – 16 of 16) sorted by relevance

/external/libese/libapdu/include/apdu/
Dapdu.h85 uint8_t sw1() const { return *(std::end(mData) - 2); } in sw1() function
87 uint16_t status() const { return (static_cast<uint16_t>(sw1()) << 8) | sw2(); } in status()
89 int8_t remainingBytes() const { return sw1() == BYTES_AVAILABLE ? sw2() : 0; } in remainingBytes()
92 const uint8_t sw1 = this->sw1(); in isWarning() local
93 return sw1 == SW1_WARNING_NON_VOLATILE_MEMORY_UNCHANGED in isWarning()
94 || sw1 == SW1_WARNING_NON_VOLATILE_MEMORY_CHANGED; in isWarning()
97 const uint8_t sw1 = this->sw1(); in isExecutionError() local
98 return sw1 >= SW1_FIRST_EXECUTION_ERROR && sw1 <= SW1_LAST_EXECUTION_ERROR; in isExecutionError()
101 const uint8_t sw1 = this->sw1(); in isCheckingError() local
102 return sw1 >= SW1_FIRST_CHECKING_ERROR && sw1 <= SW1_LAST_CHECKING_ERROR; in isCheckingError()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVNHoist/
Dhoist-very-busy.ll16 i32 1, label %sw1
23 sw1:
46 br i1 undef, label %sw0, label %sw1
52 sw1:
Dhoist-more-than-two-branches.ll15 i32 1, label %sw1
22 sw1:
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DSQLWarningTest.java322 SQLWarning sw1 = new SQLWarning("reason", "SQLState", 1); in test_setNextWarning_SQLWarning() local
328 sw.setNextWarning(sw1); in test_setNextWarning_SQLWarning()
329 assertSame(sw1, sw.getNextException()); in test_setNextWarning_SQLWarning()
330 assertSame(sw1, sw.getNextWarning()); in test_setNextWarning_SQLWarning()
333 assertSame(sw2, sw1.getNextException()); in test_setNextWarning_SQLWarning()
334 assertSame(sw2, sw1.getNextWarning()); in test_setNextWarning_SQLWarning()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/
Dpreserve-branchweights-switch-create.ll45 br i1 %cmp, label %sw1, label %sw2
47 sw1:
91 br i1 %cmp, label %sw1, label %sw2
93 sw1:
/external/llvm/test/Transforms/SimplifyCFG/
Dpreserve-branchweights-switch-create.ll45 br i1 %cmp, label %sw1, label %sw2
47 sw1:
91 br i1 %cmp, label %sw1, label %sw2
93 sw1:
/external/llvm/test/Transforms/InstCombine/
Dphi.ll642 i32 0, label %sw1
646 sw1:
657 %conditionMet = phi i8 [ 0, %entry ], [ %frombool2, %sw2 ], [ %frombool1, %sw1 ]
662 ; CHECK: %[[RES:.*]] = phi i1 [ false, %entry ], [ %cmp2, %sw2 ], [ %cmp1, %sw1 ]
673 i32 0, label %sw1
677 sw1:
688 %conditionMet = phi i8 [ %frombool0, %entry ], [ %frombool2, %sw2 ], [ %frombool1, %sw1 ]
693 ; CHECK: %[[RES:.*]] = phi i1 [ %another_condition, %entry ], [ %cmp2, %sw2 ], [ %cmp1, %sw1 ]
703 i32 0, label %sw1
707 sw1:
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dphi.ll642 i32 0, label %sw1
646 sw1:
657 %conditionMet = phi i8 [ 0, %entry ], [ %frombool2, %sw2 ], [ %frombool1, %sw1 ]
662 ; CHECK: %[[RES:.*]] = phi i1 [ false, %entry ], [ %cmp2, %sw2 ], [ %cmp1, %sw1 ]
673 i32 0, label %sw1
677 sw1:
688 %conditionMet = phi i8 [ %frombool0, %entry ], [ %frombool2, %sw2 ], [ %frombool1, %sw1 ]
693 ; CHECK: %[[RES:.*]] = phi i1 [ %another_condition, %entry ], [ %cmp2, %sw2 ], [ %cmp1, %sw1 ]
703 i32 0, label %sw1
707 sw1:
[all …]
/external/tensorflow/tensorflow/python/summary/writer/
Dwriter_test.py632 sw1 = writer_cache.FileWriterCache.get(dir1)
635 self.assertEqual(sw1, sw3)
636 self.assertFalse(sw1 == sw2)
637 sw1.close()
649 sw1 = writer_cache.FileWriterCache.get(dir1)
652 self.assertFalse(sw1 == sw2)
/external/libese/libapdu/tests/
Dapdu_test.cpp160 ASSERT_EQ(0x90, apdu.sw1()); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/
Dinterrupt-attr.ll237 attributes #2 = { "interrupt"="sw1" }
/external/llvm/test/CodeGen/Mips/
Dinterrupt-attr.ll237 attributes #2 = { "interrupt"="sw1" }
/external/u-boot/arch/arm/dts/
Darmada-388-clearfog.dts489 MPP42: gpio ? sw1-1
/external/clang/include/clang/Basic/
DAttr.td953 ["vector=sw0", "vector=sw1", "vector=hw0",
956 ["sw0", "sw1", "hw0", "hw1", "hw2", "hw3",
DAttrDocs.td963 "sw0", "sw1", "hw0", "hw1", "hw2", "hw3", "hw4", "hw5". The compiler will
/external/clang/lib/CodeGen/
DTargetInfo.cpp6234 case MipsInterruptAttr::sw1: Kind = "sw1"; break; in setTargetAttributes()