HomeSort by relevance Sort by last modified time
    Searched refs:BE (Results 26 - 50 of 715) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
UndefCapturedBlockVarChecker.cpp 33 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
52 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE,
54 if (!BE->getBlockDecl()->hasCaptures())
59 cast<BlockDataRegion>(state->getSVal(BE,
90 if (const Expr *Ex = FindBlockDeclRefExpr(BE->getBody(), VD))
AnalyzerStatsChecker.cpp 63 if (Optional<BlockEntrance> BE = P.getAs<BlockEntrance>()) {
64 const CFGBlock *CB = BE->getBlock();
123 const BlockEdge &BE = I->first;
124 const CFGBlock *Exit = BE.getDst();
CStringSyntaxChecker.cpp 111 if (const BinaryOperator *BE =
114 if (BE->getOpcode() == BO_Sub) {
115 const Expr *L = BE->getLHS();
116 const Expr *R = BE->getRHS();
  /device/linaro/bootloader/edk2/OvmfPkg/Library/AcpiTimerLib/
BaseAcpiTimerLib.inf 10 # be found at http://opensource.org/licenses/bsd-license.php
20 FILE_GUID = FB648CF5-91BE-4737-9023-FD807AC6D96D
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 49 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE;) {
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 53 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) {
54 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS());
55 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
56 assert(SRE && CE && "Binary expression must be sym+const.");
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 44 // that method should be made public?
55 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
56 AddValueSymbols_(BE->getLHS(), Asm);
57 AddValueSymbols_(BE->getRHS(), Asm);
  /external/llvm/test/MC/PowerPC/
ppc64-fixup-apply.s 3 # RUN: llvm-readobj -s -sd | FileCheck -check-prefix=CHECK -check-prefix=CHECK-BE %s
7 # This checks that fixups that can be resolved within the same
79 # CHECK-BE-NEXT: 0000: 38211234 3C211234 38215678 3C211234
81 # CHECK-BE-NEXT: 0010: 38214444 3C211111 38218001 3C211001
83 # CHECK-BE-NEXT: 0020: 60218001 64211001 38210008 3C210000
85 # CHECK-BE-NEXT: 0030: 38214321 3C214321 3821FFFF 3C211234
87 # CHECK-BE-NEXT: 0040: 38210000 3C211235
107 # CHECK-BE-NEXT: 0000: 12345678 9ABCDEF0 87654321 BEEF42
ppc64-initial-cfa.s 2 # RUN: llvm-readobj -s -sr -sd | FileCheck %s -check-prefix=STATIC -check-prefix=STATIC-BE
4 # RUN: llvm-readobj -s -sr -sd | FileCheck %s -check-prefix=PIC -check-prefix=PIC-BE
31 # STATIC-BE-NEXT: 0000: 00000010 00000000 017A5200 04784101
33 # STATIC-BE-NEXT: 0010: 1B0C0100 00000010 00000018 00000000
35 # STATIC-BE-NEXT: 0020: 00000004 00000000
72 # PIC-BE-NEXT: 0000: 00000010 00000000 017A5200 04784101
74 # PIC-BE-NEXT: 0010: 1B0C0100 00000010 00000018 00000000
76 # PIC-BE-NEXT: 0020: 00000004 00000000
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BuddhistCalendar.java 25 * BE (Buddhist Era) and 1998 AD is 2541 BE.
27 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
29 * 1/1/1 BE are rejected with an <code>IllegalArgumentException</code>.
31 * This class should not be subclassed.</p>
33 * BuddhistCalendar usually should be instantiated using
57 public static final int BE = 0;
221 return BE;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BuddhistCalendar.java 24 * BE (Buddhist Era) and 1998 AD is 2541 BE.
26 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
28 * 1/1/1 BE are rejected with an <code>IllegalArgumentException</code>.
30 * This class should not be subclassed.</p>
32 * BuddhistCalendar usually should be instantiated using
58 public static final int BE = 0;
235 return BE;
  /external/llvm/unittests/Support/
EndianStreamTest.cpp 39 endian::Writer<big> BE(OS);
40 BE.write(static_cast<int32_t>(-1362446643));
70 endian::Writer<big> BE(OS);
71 BE.write(12345.0f);
104 endian::Writer<big> BE(OS);
105 BE.write(static_cast<int64_t>(-136244664332342323));
142 endian::Writer<big> BE(OS);
143 BE.write(-2349214918.58107);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyInstructions.cpp 54 for (BasicBlock::iterator BI = DI->begin(), BE = DI->end(); BI != BE;) {
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFMCCodeEmitter.cpp 113 support::endian::Writer<support::big> BE(OS);
126 BE.write<uint32_t>(Value & 0xffffFFFF);
136 BE.write<uint32_t>(Imm >> 32);
147 BE.write<uint16_t>((Value >> 32) & 0xffff);
148 BE.write<uint32_t>(Value & 0xffffFFFF);
  /external/icu/icu4c/source/i18n/
buddhcal.cpp 99 return BE;
115 era = BuddhistCalendar::BE;
117 era = BuddhistCalendar::BE;
148 // on the current time. They'll be set to 80 years before
buddhcal.h 41 * BE (Buddhist Era) and 1998 AD is 2541 BE.
43 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
45 * 1/1/1 BE are rejected as an illegal argument.
57 BE
80 * @param source the object to be copied.
87 * @param right the object to be copied.
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 113 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr);
114 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
115 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
120 // We're known to be under a TLS fixup, so any symbol should be
121 // modified. There should be only one.
  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 45 // Here be subtlety: the iterator must be incremented before the loop
47 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;) {
70 BI = BB->begin(); BE = BB->end();
  /libcore/ojluni/src/main/resources/sun/nio/cs/
standard-charsets 11 # This code is distributed in the hope that it will be useful, but WITHOUT
29 # necessary to be the "Standard charsets" defined in the
32 # be packaged into the charsets provider class "StandardCharsets"
72 charset UTF-16BE UTF_16BE
75 alias X-UTF-16BE
94 charset UTF-32BE UTF_32BE
96 alias X-UTF-32BE
102 charset X-UTF-32BE-BOM UTF_32BE_BOM
104 alias UTF-32BE-BOM
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTestExprVisitor.cpp 58 bool VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *BE) {
59 if (BE->getValue())
60 Match("true", BE->getLocation());
62 Match("false", BE->getLocation());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.inf 7 # which accompanies this distribution. The full text of the license may be found at
19 FILE_GUID = 94621F9E-B5CA-4cfd-82BE-0C542EB0D9BE
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Dxe.inf 12 # which accompanies this distribution. The full text of the license may be found at
23 FILE_GUID = 95E3669D-34BE-4775-A651-7EA41B69D89E
  /external/llvm/lib/Target/BPF/InstPrinter/
BPFInstPrinter.cpp 39 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr))
40 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS());
  /external/swiftshader/third_party/LLVM/lib/MC/
MCExpr.cpp 84 const MCBinaryExpr &BE = cast<MCBinaryExpr>(*this);
87 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
88 OS << *BE.getLHS();
90 OS << '(' << *BE.getLHS() << ')';
93 switch (BE.getOpcode()) {
97 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
126 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
127 OS << *BE.getRHS()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 109 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;) {
135 BI = BB->begin(); BE = BB->end();

Completed in 2882 milliseconds

12 3 4 5 6 7 8 91011>>