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

1 2

  /external/icu/icu4c/source/i18n/
buddhcal.h 39 * BE (Buddhist Era) and 1998 AD is 2541 BE.
41 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
43 * 1/1/1 BE are rejected as an illegal argument.
55 BE
78 * @param source the object to be copied.
85 * @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/Target/Sparc/MCTargetDesc/
SparcMCExpr.cpp 175 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr);
176 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
177 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BuddhistCalendar.java 23 * BE (Buddhist Era) and 1998 AD is 2541 BE.
25 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
27 * 1/1/1 BE are rejected with an <code>IllegalArgumentException</code>.
29 * This class should not be subclassed.</p>
31 * BuddhistCalendar usually should be instantiated using
55 public static final int BE = 0;
219 return BE;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BuddhistCalendar.java 22 * BE (Buddhist Era) and 1998 AD is 2541 BE.
24 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
26 * 1/1/1 BE are rejected with an <code>IllegalArgumentException</code>.
28 * This class should not be subclassed.</p>
30 * BuddhistCalendar usually should be instantiated using
56 public static final int BE = 0;
233 return BE;
  /external/clang/lib/AST/
ParentMap.cpp 177 BinaryOperator *BE = cast<BinaryOperator>(P);
180 return BE->getOpcode()!=BO_Comma ||DirectChild==BE->getRHS();
  /external/clang/lib/StaticAnalyzer/Checkers/
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();
RetainCountChecker.cpp 99 /// This accounts for us not knowing if an arbitrary ivar is supposed to be
125 /// True if the current state and/or retain count may turn out to not be the
131 /// This setting should not be propagated to state derived from this state.
132 /// Once we start deriving new states, it would be inconsistent to override
385 /// specifies the argument (starting from 0). This can be sparsely
949 // This can generally only happen if we know that the callback will only be
    [all...]
  /external/libjpeg-turbo/
jcphuff.c 13 * currently does not allow multiple-scan files to be written with output
47 unsigned int BE; /* # of buffered correction bits before MCU */
76 * which should be safe.
145 /* Only DC coefficients may be interleaved, so cinfo->comps_in_scan = 1
182 entropy->BE = 0;
195 * NB: these must be called only when actually outputting,
223 * left-justified in this part. At most 16 bits can be passed to emit_bits
336 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
337 entropy->BE = 0;
366 entropy->BE = 0
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 37 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
42 // Not in current loop? It must be an exit block.
66 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
71 // Not in current loop? It must be an exit block.
91 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
96 // Not in current loop? It must be an exit block.
118 return nullptr; // Multiple exits from the block, must not be a preheader
    [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 73 const MCBinaryExpr &BE = cast<MCBinaryExpr>(*this);
76 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
77 BE.getLHS()->print(OS, MAI);
80 BE.getLHS()->print(OS, MAI);
84 switch (BE.getOpcode()) {
87 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
117 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
118 BE.getRHS()->print(OS, MAI)
    [all...]
MCStreamer.cpp 196 // be sorted upon later. Zero is reserved to mean 'unemitted'.
495 report_fatal_error("Frame offset must be less than or equal to 240!");
509 report_fatal_error("Allocation size must be non-zero!");
549 report_fatal_error("If present, PushMachFrame must be the first UOP");
581 " something must not be fully mc'ized\n";
631 const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr);
632 visitUsedExpr(*BE.getLHS());
633 visitUsedExpr(*BE.getRHS());
  /external/pdfium/third_party/libjpeg/
fpdfapi_jcphuff.c 11 * currently does not allow multiple-scan files to be written with output
45 unsigned int BE; /* # of buffered correction bits before MCU */
74 * which should be safe.
143 /* Only DC coefficients may be interleaved, so cinfo->comps_in_scan = 1
180 entropy->BE = 0;
193 * NB: these must be called only when actually outputting,
221 * left-justified in this part. At most 16 bits can be passed to emit_bits
336 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
337 entropy->BE = 0;
366 entropy->BE = 0
    [all...]
  /external/llvm/lib/IR/
Value.cpp 84 // If this value is named, destroy the name. This should not be in a symtab
114 // This can be computed either by scanning the instructions in BB, or by
115 // scanning the use list of this Value. Both lists can be very long, but
120 BasicBlock::const_iterator BI = BB->begin(), BE = BB->end();
122 for (; BI != BE && UI != UE; ++BI, ++UI) {
190 // some clients want to call .data() on the result and expect it to be null
400 assert(BB && "Basic block that may contain a use of 'New' must be defined\n");
428 // Even though we don't look through PHI nodes, we could be called on an
429 // instruction in an unreachable block, which may be on a cycle.
489 // Even though we don't look through PHI nodes, we could be called on a
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 120 Ctx.SelfArg = nullptr; // Will be set below
128 // Hack to handle constructors, where self cannot be recovered from
336 til::SExpr *BE = translate(ME->getBase(), Ctx);
337 til::SExpr *E = new (Arena) til::SApply(BE);
345 if (hasCppPointerType(BE))
668 // If E == null, this is a backedge and will be set later.
748 // nodes will be marked as incomplete, and stripped out at the end.
751 // variable, e.g. x = Phi(y, y, x) can be reduced to x = y.
812 // FIXME: right now we emulate params with loads; that should be fixed.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 68 // TODO: This can be removed after we enable history tracking with
187 void ExprEngine::VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred,
190 CanQualType T = getContext().getCanonicalType(BE->getType());
192 const BlockDecl *BD = BE->getBlockDecl();
241 Bldr.generateNode(BE, Pred,
242 State->BindExpr(BE, Pred->getLocationContext(), V),
246 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
455 // reason about, since we expect all regions to be wrapped in Locs.
476 // FIXME: all pre/post visits should eventually be handled by ::Visit().
559 BlockEdge BE = N->getLocation().castAs<BlockEdge>()
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jchuff.c 13 * If the data destination module demands suspension, we want to be able to
19 * the library currently does not allow multiple-scan files to be written
52 * but must not be updated permanently until we complete the MCU.
112 unsigned int BE; /* # of buffered correction bits before MCU */
140 * which should be safe.
215 * it must still fit in si bits, since no code is allowed to be all ones.
250 * NB: these must be called only when actually outputting,
300 * left-justified in this part. At most 16 bits can be passed to emit_bits
479 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
480 entropy->BE = 0
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 235 // some build systems. We don't try to be complete here because we don't
330 llvm::Triple BE = Target.getBigEndianArchVariant();
331 if (BE.getArch() != llvm::Triple::UnknownArch)
332 Target = std::move(BE);
436 // should be outside in the client; the parts that aren't should have proper
578 // Ignore input from stdin or any inputs that cannot be preprocessed.
758 // This is ad-hoc, but we don't want to be excessively noisy. If the result
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 442 // the imm operand can be either an expression or an immediate.
448 Error(IDLoc, "set: argument must be between -2147483648 and 4294967295");
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 102 H, HE, LI, BE, B, C, N, O, F, NE, NA, MG, AL, SI, P, S, CL, AR, K, CA, SC, TI, V, CR, MN,
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 111 // headers many times can be expensive.
332 // Ignore default cases that aren't likely to be reachable because all
411 // noreturn, that don't return. If people would like this warning to be more
412 // accurate, such functions should be marked as noreturn.
439 // Don't suggest that virtual functions be marked "noreturn", since they
440 // might be overridden by non-noreturn functions.
445 // Don't suggest that template instantiations be marked "noreturn"
701 // or a 'may be used uninitialized' diagnostic otherwise.
729 // Don't know how to report this. Just fall back to 'may be used
794 // That may be impossible, and there's no syntactic fix for this
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 83 /// instances to be emitted, but only after any dependents have been added
192 // For a surface load of vector size N, the Nth operand will be the surfref
307 // Must be kept in sync with NVPTXInstPrinter::printRegName
673 /* Find out if a global variable can be demoted to local scope.
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 220 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
221 int64_t LHSVal = EvaluateCRExpr(BE->getLHS());
222 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
228 switch (BE->getOpcode()) {
508 // Operand must be 64-bit aligned, signed 27-bit immediate.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 32 /// getPromotedType - Return the specified type promoted as it would be to pass
84 assert(Size && "0-sized memory transferring should be removed already.");
103 // dest address will be promotable. See if we can find a better type than the
111 // The SrcETy might be something like {{{double}}} or [1 x double]. Rip
152 // Set the size of the copy to 0, it will be deleted on the next iteration.
172 assert(Len && "0-sized memory setting should be removed already.");
192 // Set the size of the copy to 0, it will be deleted on the next iteration.
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-i960.c 11 GAS is distributed in the hope that it will be useful,
43 Since the target of a COBR cannot be external, no relocation
44 directives for this size displacement have to be generated.
45 But the base assembler had to be modified to issue error
46 messages if the symbol did turn out to be external.
59 is based on a symbol, because it could be relocated at link time.
146 /* Chars that can be used to separate mant from exp in floating point nums. */
190 #define BE 0x12000000
218 /* Info from which a MEMA or MEMB format instruction can be generated. */
226 displacement should be determined. *
    [all...]

Completed in 6061 milliseconds

1 2