/external/clang/test/SemaCXX/ |
warn-unused-value.cpp | 53 struct Used { 54 Used(); 55 Used(int); 56 Used(int, int); 64 Used(); 65 Used(1); 66 Used(1, 1); 91 (void)typeid(b.f()); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_dead_sources.c | 9 if (sub->Src[RC_PAIR_PRESUB_SRC].Used) { 14 sub->Src[i].Used = 1; 28 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1; 32 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1; 38 * This pass finds sources that are not used by their instruction and marks 53 inst->U.P.RGB.Src[i].Used = 0; 54 inst->U.P.Alpha.Src[i].Used = 0;
|
radeon_program_pair.c | 51 /* Make sure only one presubtract operation is used per instruction. */ 53 if (rgb && pair->RGB.Src[RC_PAIR_PRESUB_SRC].Used 58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used 67 if (pair->RGB.Src[i].Used) { 77 if (pair->Alpha.Src[i].Used) { 102 pair->RGB.Src[candidate].Used = 1; 110 pair->RGB.Src[i].Used = 1; 115 pair->Alpha.Src[candidate].Used = 1; 123 pair->Alpha.Src[i].Used = 1; 138 /* swz > 3 means that the swizzle is either not used, or a constan [all...] |
radeon_variable.h | 41 int Used;
|
radeon_program.c | 75 unsigned char * Used; 94 d->Used[index] |= mask; 98 * This function fills in the parameter 'used' with a writemask that 99 * represent which components of each temporary register are used by the 102 * @param used The function does not initialize this parameter. 106 unsigned char * used, 111 d.Used = used; 122 /* Search a list of used temporaries for a free one 124 * @note If this functions finds a free temporary, it will mark it as used 152 unsigned char used[RC_REGISTER_MAX_INDEX]; local [all...] |
radeon_pair_regalloc.c | 53 unsigned int Used:1; 101 /** This is 1 if this class is being used by the register allocator 103 unsigned int Used; 116 if (!src || !src->Used) { 134 if (!a->Used || !b->Used) { 171 s->Input[index].Used = 1; 178 reg->Live[i].Used = 1; 220 * This pass is supposed to be used to maintain correct allocation of inputs 568 /* If we haven't used this register class yet, mark i [all...] |
radeon_program_pair.h | 53 * the presubtract value will be used, and 59 unsigned int Used:1;
|
radeon_variable.c | 101 * index that is already being used. */ 104 .Used = 1; 112 .Used = 1; 214 if (!var->Live[chan].Used 219 if (!var->Live[chan].Used 223 var->Live[chan].Used = 1; 348 * Generate a list of variables used by the shader program. Each instruction
|
radeon_pair_schedule.c | 86 * Used to keep track of which instructions read a value. 94 * Used to keep track which values are stored in each component of a 341 sinst->Score += sinst->Instruction->U.P.RGB.Src[src_idx].Used + 342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used; 531 if (dst_sub->Src[RC_PAIR_PRESUB_SRC].Used) 556 if (!temp.Used) 612 if (alpha->RGB.Src[RC_PAIR_PRESUB_SRC].Used) { 618 if (alpha->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { 729 if (emitted->U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Used) { 744 if (!emitted->U.P.Alpha.Src[RC_PAIR_PRESUB_SRC].Used) [all...] |
radeon_program_print.c | 352 if (inst->RGB.Src[src].Used) { 359 if (inst->Alpha.Src[src].Used) { 367 if(inst->RGB.Src[RC_PAIR_PRESUB_SRC].Used) { 372 if(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) {
|
/external/clang/include/clang/Sema/ |
Weak.h | 10 // This file defines the WeakInfo class, which is used to store 28 bool used; // identifier later declared? member in class:clang::WeakInfo 31 : alias(nullptr), loc(SourceLocation()), used(false) {} 33 : alias(Alias), loc(Loc), used(false) {} 36 void setUsed(bool Used=true) { used = Used; } 37 inline bool getUsed() { return used; }
|
/external/llvm/lib/Object/ |
RecordStreamer.cpp | 1 //===-- RecordStreamer.cpp - Record asm definde and used symbols ----------===// 23 case Used: 39 case Used: 54 case Used: 55 S = Used;
|
RecordStreamer.h | 1 //===-- RecordStreamer.h - Record asm defined and used symbols ---*- C++ -*===// 18 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used };
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
ObjCUnusedIVarsChecker.cpp | 30 enum IVarState { Unused, Used }; 41 I->second = Used; 75 I->second = Used; 161 << "' is never used by the methods in its @implementation " 162 "(although it may be used by category methods).";
|
/external/llvm/include/llvm/Target/ |
TargetCallingConv.h | 133 bool Used; 145 InputArg() : VT(MVT::Other), Used(false) {} 146 InputArg(ArgFlagsTy flags, EVT vt, EVT argvt, bool used, 148 : Flags(flags), Used(used), OrigArgIndex(origIdx), PartOffset(partOffs) {
|
/external/llvm/lib/Transforms/IPO/ |
Internalize.cpp | 18 // told it is only used from within this module, it is safe to do it. 139 SmallPtrSet<GlobalValue *, 8> Used; 140 collectUsedGlobalVariables(M, Used, false); 142 // We must assume that globals in llvm.used have a reference that not even 144 // For llvm.compiler.used the situation is a bit fuzzy. The assembler and 146 // one might think that it could just drop llvm.compiler.used. The problem 149 // conservative, we internalize symbols in llvm.compiler.used, but we 150 // keep llvm.compiler.used so that the symbol is not deleted by llvm. 151 for (GlobalValue *V : Used) { 172 // Never internalize the llvm.used symbol. It is used to implemen [all...] |
/bootable/recovery/minui/ |
Android.mk | 20 # This used to compare against values in double-quotes (which are just 42 # Used by OEMs for factory test images.
|
/external/llvm/lib/Transforms/Scalar/ |
DCE.cpp | 14 // it rechecks instructions that were used by removed instructions to see if 118 // instructions being used, add them to the worklist, because they might 122 if (Instruction *Used = dyn_cast<Instruction>(*OI)) 123 WorkList.push_back(Used);
|
/device/generic/goldfish/opengl/system/egl/ |
Android.mk | 18 # Used to access the Bionic private OpenGL TLS slot
|
/frameworks/base/data/keyboards/ |
common.mk | 16 # Used by Android.mk and keyboards.mk.
|
/external/clang/lib/Sema/ |
SemaTemplateDeduction.cpp | 35 /// strictest results for template argument deduction (as used for, e.g., [all...] |
/ndk/tests/build/topological-sort/jni/ |
Android.mk | 0 # Used to check that ndk-build does a proper topological sort of
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmscgats.c | 114 cmsUInt32Number Used; 187 cmsUInt32Number Used; 236 {"DIFFUSE_GEOMETRY", WRITE_STRINGIFY}, // The diffuse geometry used. Allowed values are "sphere" or "opal". 243 // uniquely identifying th e material. This is intend ed to be used for IT8.7 246 {"INSTRUMENTATION", WRITE_STRINGIFY}, // Used to report the specific instrumentation used (manufacturer and 252 {"MEASUREMENT_SOURCE", WRITE_STRINGIFY}, // Illumination used for spectral measurements. This data helps provide 255 {"PRINT_CONDITIONS", WRITE_STRINGIFY}, // Used to define the characteristics of the printed sheet being reported. 260 {"SAMPLE_BACKING", WRITE_STRINGIFY}, // Identifies the backing material used behind the sample during 273 {"FILTER", WRITE_STRINGIFY}, // Identifies the use of physical filter(s) during measurement. Typically used t [all...] |
cmserr.c | 380 chunk ->Used = 0; 428 cmsUInt32Number Free = sub -> h ->BlockSize - sub -> h -> Used; 451 ptr = sub -> h ->Block + sub -> h ->Used; 452 sub -> h -> Used += size;
|
/external/bison/ |
cfg.mk | 25 # Used in maint.mk's web-manual rule 50 # The local directory containing the checked-out copy of gnulib used in 51 # this release. Used solely to get a date for the "announcement" target.
|