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

  /external/icu4c/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/ARM/MCTargetDesc/
ARMMCExpr.cpp 44 // that method should be made public?
54 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
55 AddValueSymbols_(BE->getLHS(), Asm);
56 AddValueSymbols_(BE->getRHS(), Asm);
  /external/clang/lib/AST/
ParentMap.cpp 109 BinaryOperator *BE = cast<BinaryOperator>(P);
112 return BE->getOpcode()!=BO_Comma ||DirectChild==BE->getRHS();
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 63 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
64 const CFGBlock *CB = BE->getBlock();
123 const BlockEdge &BE = I->first;
124 const CFGBlock *Exit = BE.getDst();
IdempotentOperationChecker.cpp 150 // If either value is unknown, we can't be 100% sure of all paths.
191 // x Assign x can be used to silence unused variable warnings intentionally.
325 // At the post visit stage, the predecessor ExplodedNode will be the
457 // our assumption to be impossible.
545 const BlockEdge &BE = I->first;
554 const CFGBlock *destBlock = BE.getDst();
584 else if (BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
585 B = BE->getDst();
615 // that varies. This could be due to a compile-time constant like sizeof. An
RetainCountChecker.cpp 361 /// specifies the argument (starting from 0). This can be sparsely
773 // FIXME: Eventually this should be unneeded.
928 // FIXME: This should all be refactored into a chain of "summary lookup"
933 // Part of: <rdar://problem/7299394>. This will be addressed
947 // This should be addressed using a API table.
953 // This should be addressed using a API table. This strcmp is also
960 // This should be addressed using a API table.
965 // Eventually this can be improved by recognizing that the pixel
974 // Eventually this can be improved by recognizing that 'releaseInfo'
    [all...]
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 73 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
74 AddValueSymbols(BE->getLHS());
75 AddValueSymbols(BE->getRHS());
93 assert(AddrSpace == 0 && "Address space must be 0!");
MCExpr.cpp 86 const MCBinaryExpr &BE = cast<MCBinaryExpr>(*this);
89 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
90 OS << *BE.getLHS();
92 OS << '(' << *BE.getLHS() << ')';
95 switch (BE.getOpcode()) {
98 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
127 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
128 OS << *BE.getRHS()
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 44 /// can only be present in call instructions.
47 /// MO_GPREL - Represents the offset from the current gp value to be used
216 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Expr);
217 const MCExpr *LHS = BE->getLHS();
218 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/jpeg/
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/qemu/distrib/jpeg-6b/
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/include/llvm/Analysis/
LoopInfo.h 13 // loops may actually be several loops that share the same header node.
176 // be a preheader, etc). For best success, the loop simplification and
177 // induction variable canonicalization pass should be used to normalize loops
191 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
196 // Not in current loop? It must be an exit block.
222 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
227 // Not in current loop? It must be an exit block.
253 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 11 // intended to be used by linker to optimize code at link time.
456 /// list to be resolved later.
554 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
555 AddValueSymbols(BE->getLHS());
556 AddValueSymbols(BE->getRHS());
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 128 // Ignore default cases that aren't likely to be reachable because all
208 // noreturn, that don't return. If people would like this warning to be more
209 // accurate, such functions should be marked as noreturn.
236 // Don't suggest that virtual functions be marked "noreturn", since they
237 // might be overridden by non-noreturn functions.
242 // Don't suggest that template instantiations be marked "noreturn"
498 const BlockExpr *BE = cast<BlockExpr>(E);
501 S.Diag(BE->getLocStart(), diag::warn_uninit_byref_blockvar_captured_by_block)
504 S.Diag(BE->getLocStart(),
631 // Although this call will be slow, this is only called when outputtin
    [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/llvm/lib/MC/MCParser/
AsmParser.cpp 209 /// will be either the EndOfStatement or EOF.
238 /// accepts a single symbol (which should be a label or an external).
551 // Variable symbols may not be marked as defined, so check those
793 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
794 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
795 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
800 if (!LHS) LHS = BE->getLHS();
801 if (!RHS) RHS = BE->getRHS();
803 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 14 This program is distributed in the hope that it will be useful,
95 # define BE(expr, val) __builtin_expect (expr, val)
97 # define BE(expr, val) (expr)
157 /* An integer used to represent a set of bits. It must be unsigned,
158 and must be at least as wide as unsigned int. */
353 /* These 2 bits can be moved into the union if needed (e.g. if running out
392 /* End of the buffer may be shorter than its length in the cases such
400 the context of mbs[0] may be different from raw_mbs[0], which is
466 and a page size can be as small as 4096 bytes. So we cannot safely
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 380 milliseconds