HomeSort by relevance Sort by last modified time
    Searched refs:Used (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /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);
  /external/chromium_org/third_party/mesa/src/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
  /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;
  /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(0), 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/Transforms/IPO/
Internalize.cpp 122 SmallPtrSet<GlobalValue *, 8> Used;
123 collectUsedGlobalVariables(M, Used, false);
125 // We must assume that globals in llvm.used have a reference that not even
127 // For llvm.compiler.used the situation is a bit fuzzy. The assembler and
129 // one might think that it could just drop llvm.compiler.used. The problem
132 // conservative, we internalize symbols in llvm.compiler.used, but we
133 // keep llvm.compiler.used so that the symbol is not deleted by llvm.
134 for (SmallPtrSet<GlobalValue *, 8>::iterator I = Used.begin(), E = Used.end();
156 // Never internalize the llvm.used symbol. It is used to implemen
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DCE.cpp 14 // it rechecks instructions that were used by removed instructions to see if
110 // instructions being used, add them to the worklist, because they might
114 if (Instruction *Used = dyn_cast<Instruction>(*OI))
115 WorkList.push_back(Used);
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 116 bool Used;
126 InputArg() : VT(MVT::Other), Used(false) {}
127 InputArg(ArgFlagsTy flags, EVT vt, bool used,
129 : Flags(flags), Used(used), OrigArgIndex(origIdx), PartOffset(partOffs) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
background.js 20 * Used window.open because I didn't want the tabs permission.
  /device/generic/goldfish/opengl/system/egl/
Android.mk 18 # Used to access the Bionic private OpenGL TLS slot
  /external/chromium_org/remoting/webapp/
error.js 14 // Used to signify that an operation was cancelled by the user. This should
  /frameworks/av/services/audioflinger/
Android.mk 60 # Define ANDROID_SMP appropriately. Used to get inline tracing fast-path.
  /frameworks/base/data/keyboards/
common.mk 16 # Used by Android.mk and keyboards.mk.
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 30 enum IVarState { Unused, Used };
41 I->second = Used;
75 I->second = Used;
170 << "' is never used by the methods in its @implementation "
171 "(although it may be used by category methods).";
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 35 /// strictest results for template argument deduction (as used for, e.g.,
    [all...]

Completed in 286 milliseconds

1 2 3 4 5 6 7