/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonMCTargetDesc.cpp | 165 CodeGenOpt::Level OL) {
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCMCTargetDesc.cpp | 92 CodeGenOpt::Level OL) {
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86MCTargetDesc.cpp | 157 CodeGenOpt::Level OL) {
|
/external/llvm/lib/Target/X86/ |
X86TargetMachine.cpp | 108 CodeGenOpt::Level OL)
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_tex_validate.c | 125 int level; local 133 level = intel_image->base.Base.Level; 137 for (int i = 0; i < mt->level[level].depth; i++) 138 intel_miptree_slice_resolve_depth(intel, mt, level, i); 148 for (i = 0; i < mt->level[level].depth; i++) { 149 intel_miptree_get_image_offset(mt, level, face, i, &x, &y); 158 intel_miptree_get_image_offset(mt, level, face, 0, &x, &y) [all...] |
/external/skia/src/core/ |
SkBitmapController.cpp | 185 SkMipMap::Level level; local 186 if (fCurrMip->extractLevel(scale, &level)) { 187 const SkSize& invScaleFixup = level.fScale; 192 return fResultBitmap.installPixels(level.fPixmap);
|
/frameworks/compile/slang/ |
slang.h | 264 void setOptimizationLevel(llvm::CodeGenOpt::Level OptimizationLevel);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
mce.h | 300 ULONGLONG Level:2; 333 ULONGLONG Level:2; 378 ULONGLONG Level:2; 527 ULONGLONG Level:3;
|
usbdlib.h | 226 IN USHORT Level,
|
/external/eigen/blas/testing/ |
cblat2.f | 3 * Test program for the COMPLEX Level 2 Blas. 371 9993 FORMAT( ' TESTS OF THE COMPLEX LEVEL 2 BLAS', //' THE F', 405 * Auxiliary routine for test program for Level 2 Blas. 750 * Auxiliary routine for test program for Level 2 Blas. [all...] |
dblat2.f | 3 * Test program for the DOUBLE PRECISION Level 2 Blas. 366 9993 FORMAT( ' TESTS OF THE DOUBLE PRECISION LEVEL 2 BLAS', //' THE F', 398 * Auxiliary routine for test program for Level 2 Blas. 739 * Auxiliary routine for test program for Level 2 Blas. [all...] |
dblat3.f | 3 * Test program for the DOUBLE PRECISION Level 3 Blas. 34 * A Set of Level 3 Basic Linear Algebra Subprograms. 332 9995 FORMAT( ' TESTS OF THE DOUBLE PRECISION LEVEL 3 BLAS', //' THE F', 362 * Auxiliary routine for test program for Level 3 Blas. 643 * Auxiliary routine for test program for Level 3 Blas. 913 * Auxiliary routine for test program for Level 3 Blas. [all...] |
sblat2.f | 3 * Test program for the REAL Level 2 Blas. 366 9993 FORMAT( ' TESTS OF THE REAL LEVEL 2 BLAS', //' THE F', 398 * Auxiliary routine for test program for Level 2 Blas. 739 * Auxiliary routine for test program for Level 2 Blas. [all...] |
sblat3.f | 3 * Test program for the REAL Level 3 Blas. 34 * A Set of Level 3 Basic Linear Algebra Subprograms. 332 9995 FORMAT( ' TESTS OF THE REAL LEVEL 3 BLAS', //' THE F', 362 * Auxiliary routine for test program for Level 3 Blas. 643 * Auxiliary routine for test program for Level 3 Blas. 913 * Auxiliary routine for test program for Level 3 Blas. [all...] |
zblat2.f | 3 * Test program for the COMPLEX*16 Level 2 Blas. 372 9993 FORMAT( ' TESTS OF THE COMPLEX*16 LEVEL 2 BLAS', //' THE F', 406 * Auxiliary routine for test program for Level 2 Blas. 752 * Auxiliary routine for test program for Level 2 Blas. [all...] |
/external/clang/lib/Lex/ |
Pragma.cpp | 115 // Invoke the first level of pragma handlers which reads the namespace id. [all...] |
/external/llvm/include/llvm/Target/ |
TargetLowering.h | 557 /// made legal with custom lowering. This is used to help guide high-level 566 /// made legal using promotion. This is used to help guide high-level lowering 576 /// high-level lowering decisions. [all...] |
/external/clang/include/clang/Frontend/ |
ASTUnit.h | 79 DiagnosticsEngine::Level Level; 138 /// Track the top-level decls which appeared in an ASTUnit which was loaded 151 /// \brief Map from FileID to the file-level declarations that it contains. 292 /// \brief A list of the serialization ID numbers for each of the top-level 392 /// \brief A string hash of the top-level declaration and macro definition 399 /// \brief A string hash of the top-level declaration and macro definition 406 /// \brief The current hash value for the top-level declaration and macro 578 /// \brief Add a new top-level declaration. 583 /// \brief Add a new local file-level declaration [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 476 // Save the current top-level hash value. 577 void HandleDiagnostic(DiagnosticsEngine::Level Level, 609 void StoredDiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level Level, 612 DiagnosticConsumer::HandleDiagnostic(Level, Info); 618 StoredDiags.emplace_back(Level, Info); 777 /// \brief Add the given declaration to the hash of all top-level entities. 792 // enter the top-level namespace. 834 // reported as top-level declarations, even though their DeclContex [all...] |
/external/clang/lib/Parse/ |
ParseExpr.cpp | 19 /// handled by ParseCastExpression, the higher level pieces are handled by 156 /// \brief Parse an expr that doesn't include (top-level) commas. 239 static bool isFoldOperator(prec::Level Level) { 240 return Level > prec::Unknown && Level != prec::Conditional; 249 Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) { 250 prec::Level NextTokPrec = getBinOpPrecedence(Tok.getKind(), 380 prec::Level ThisPrec = NextTokPrec; 400 // A=(B=(C=D)), where each paren is a level of recursion here [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
CycleDetectingLockFactory.java | 42 import java.util.logging.Level; 109 * deadlock will happen, as it is possible that higher level application logic 214 * of a {@link Level#SEVERE} message indicating the potential deadlock, 221 logger.log(Level.SEVERE, "Detected potential deadlock", e); [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
ArbitraryInstances.java | 142 import java.util.logging.Level; 374 logger.log(Level.WARNING, "Exception while invoking default constructor.", e.getCause());
|
/external/icu/icu4c/source/i18n/ |
collationkeys.cpp | 204 CollationKeys::LevelCallback::needToWrite(Collation::Level /*level*/) { return TRUE; } 208 * to a mask of Collation::Level bits up to that strength, 228 Collation::Level minLevel, LevelCallback &callback, 272 // Variable CE, shift it to quaternary level. 304 // If ce==NO_CE, then write nothing for the primary level but 317 // at the end of the level or merged segment. 338 // When the primary level overflows we can stop because we need not 381 // Append reverse weights. The level will be re-reversed later. 399 // The backwards secondary level compares secondary weights backward [all...] |
/external/llvm/lib/CodeGen/ |
PostRASchedulerList.cpp | 102 const TargetSubtargetInfo &ST, CodeGenOpt::Level OptLevel, 255 CodeGenOpt::Level OptLevel,
|
/external/llvm/lib/LTO/ |
LTOCodeGenerator.cpp | 149 void LTOCodeGenerator::setOptLevel(unsigned Level) { 150 OptLevel = Level; 508 // parallelism level 1. This is achieved by having splitCodeGen return the 509 // original module at parallelism level 1 which we then assign back to
|