Searched defs:Source (Results 76 - 100 of 105) sorted by relevance

12345

/external/llvm/include/llvm/Target/
H A DTargetLowering.h5 // This file is distributed under the University of Illinois Open Source
67 Source, // Follow source order. enumerator in enum:llvm::Sched::Preference
/external/mesa3d/src/mesa/main/
H A Dff_fragment_shader.cpp96 __extension__ GLubyte Source:4; /**< SRC_x */ member in struct:mode_opt
99 GLubyte Source; /**< SRC_x */
468 key->unit[i].OptRGB[j].Source = translate_source(comb->SourceRGB[j]);
469 key->unit[i].OptA[j].Source = translate_source(comb->SourceA[j]);
477 key->unit[i].OptRGB[0].Source = SRC_TEXTURE;
479 key->unit[i].OptRGB[1].Source = texUnit->BumpTarget - GL_TEXTURE0 + SRC_TEXTURE0;
662 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
715 src[i] = emit_combine_source( p, unit, opt[i].Source, opt[i].Operand );
1078 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, uni
[all...]
H A Dmtypes.h1315 /** Source terms: GL_PRIMARY_COLOR, GL_TEXTURE, etc */
1318 /** Source operands: GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, etc */
2192 const GLchar *Source; /**< Source code string */ member in struct:gl_shader
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h5 // This file is distributed under the University of Illinois Open Source
1124 // Source is a pointer, destination is the value to store.
1129 Store(SExpr *P, SExpr *V) : SExpr(COP_Store), Dest(P), Source(V) {}
1130 Store(const Store &S, SExpr *P, SExpr *V) : SExpr(S), Dest(P), Source(V) {}
1135 SExpr *source() { return Source.get(); } // Value to store
1136 const SExpr *source() const { return Source.get(); }
1141 auto Nv = Vs.traverse(Source, Vs.subExprCtx(Ctx));
1154 SExprRef Source; member in class:clang::threadSafety::Store
/external/clang/include/clang/Lex/
H A DPreprocessor.h5 // This file is distributed under the University of Illinois Open Source
494 void setExternalSource(ExternalPreprocessorSource *Source) { argument
495 ExternalSource = Source;
/external/clang/lib/Frontend/
H A DASTUnit.cpp5 // This file is distributed under the University of Illinois Open Source
1674 ExternalASTSource &Source = *getASTContext().getExternalSource(); local
1678 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_int.h298 YV12_BUFFER_CONFIG *Source; member in struct:VP9_COMP
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp5 // This file is distributed under the University of Illinois Open Source
229 FullDependence::FullDependence(Instruction *Source, argument
233 Dependence(Source, Destination),
/external/llvm/lib/IR/
H A DInstructions.cpp5 // This file is distributed under the University of Illinois Open Source
481 static Instruction* createFree(Value* Source, Instruction *InsertBefore, argument
485 assert(Source->getType()->isPointerTy() &&
496 Value *PtrCast = Source;
498 if (Source->getType() != IntPtrTy)
499 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
502 if (Source->getType() != IntPtrTy)
503 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
514 Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) { argument
515 return createFree(Source, InsertBefor
521 CreateFree(Value* Source, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp5 // This file is distributed under the University of Illinois Open Source
437 bool AMDGPUTargetLowering::isTruncateFree(EVT Source, EVT Dest) const { argument
439 return Dest.bitsLT(Source) && (Dest.getSizeInBits() % 32 == 0);
442 bool AMDGPUTargetLowering::isTruncateFree(Type *Source, Type *Dest) const { argument
444 return Dest->getPrimitiveSizeInBits() < Source->getPrimitiveSizeInBits() &&
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscgats.c165 char* Source; // Points to loc. being parsed member in struct:__anon28671
504 it8->ch = *it8->Source;
505 if (it8->ch) it8->Source++;
1305 it8 -> Source = NULL;
2316 it8-> Source = it8 -> MemoryBlock;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_int.h319 YV12_BUFFER_CONFIG *Source; member in struct:VP8_COMP
/external/clang/lib/AST/
H A DDecl.cpp5 // This file is distributed under the University of Illinois Open Source
3550 ExternalASTSource *Source = getASTContext().getExternalSource(); local
3551 assert(hasExternalLexicalStorage() && Source && "No external storage?");
3554 ExternalASTSource::Deserializing TheFields(Source);
3558 switch (Source->FindExternalLexicalDecls(this, isFieldOrIndirectField,
H A DASTContext.cpp5 // This file is distributed under the University of Illinois Open Source
811 ASTContext::setExternalSource(IntrusiveRefCntPtr<ExternalASTSource> Source) { argument
812 ExternalSource = Source;
/external/clang/lib/Analysis/
H A DThreadSafety.cpp5 // This file is distributed under the University of Illinois Open Source
2175 const Expr *Source = OE->getArg(1); local
2177 checkAccess(Source, AK_Read);
2204 const Expr* Source = Exp->getArg(0); local
2205 checkAccess(Source, AK_Read);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp5 // This file is distributed under the University of Illinois Open Source
1996 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source, argument
1998 Target.resize(CharByteWidth * (Source.size() + 1));
2001 bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
/external/clang/lib/Sema/
H A DSemaInit.cpp5 // This file is distributed under the University of Illinois Open Source
4435 const ArrayType *Source) {
4438 if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
4442 if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
4447 return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
4433 hasCompatibleArrayTypes(ASTContext &Context, const ArrayType *Dest, const ArrayType *Source) argument
H A DSemaStmt.cpp5 // This file is distributed under the University of Illinois Open Source
261 const Expr *Source = POE->getSyntacticForm(); local
262 if (isa<ObjCSubscriptRefExpr>(Source))
H A DSemaChecking.cpp5 // This file is distributed under the University of Illinois Open Source
5800 const Type *Source = local
5806 dyn_cast<BuiltinType>(ToBool ? Source : Target);
5807 const Type *BoolCandidateType = ToBool ? Target : Source;
5838 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr(); local
5840 if (Source == Target) return;
5866 if (Source->isPointerType() || Source->canDecayToPointerType()) {
5874 if (isa<VectorType>(Source)) {
5883 if (S.Context.getTypeSize(Source)
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_int.h322 YV12_BUFFER_CONFIG *Source; member in struct:VP8_COMP
/external/chromium_org/v8/include/
H A Dv8.h1056 * Source code which can be then compiled to a UnboundScript or Script.
1058 class Source { class in class:v8::ScriptCompiler
1060 // Source takes ownership of CachedData.
1061 V8_INLINE Source(Local<String> source_string, const ScriptOrigin& origin,
1063 V8_INLINE Source(Local<String> source_string,
1065 V8_INLINE ~Source();
1068 // caller. The CachedData object is alive as long as the Source object is
1075 Source(const Source&);
1076 Source
6366 ScriptCompiler::Source::Source(Local<String> string, const ScriptOrigin& origin, function in class:v8::ScriptCompiler::Source
6376 ScriptCompiler::Source::Source(Local<String> string, function in class:v8::ScriptCompiler::Source
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5 // This file is distributed under the University of Illinois Open Source
2833 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset()); local
2838 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2840 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
/external/mksh/src/
H A Dsh.h1490 typedef struct source Source; typedef in typeref:struct:source
1506 Source *next; /* stacked source */
1512 /* Source.type values */
1524 /* Source.flags values */
1593 EXTERN Source *source; /* yyparse/yylex source */
1724 void hist_init(Source *);
1790 Source *pushs(int, Area *);
1791 void set_prompt(int, Source *);
1796 int shell(Source * volatile, volatile bool);
1921 struct op *compile(Source *, boo
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1315 /** Source terms: GL_PRIMARY_COLOR, GL_TEXTURE, etc */
1318 /** Source operands: GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, etc */
2192 const GLchar *Source; /**< Source code string */ member in struct:gl_shader
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 7638 milliseconds

12345