Searched defs:Components (Results 1 - 10 of 10) sorted by relevance

/external/jhead/
H A Dmakernote.c38 int Tag, Format, Components; local
46 Components = Get32u(DirEntry+4);
54 if ((unsigned)Components > 0x10000){
55 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
59 ByteCount = Components * BytesPerFormat[Format];
119 if (Tag == 1 && Components > 16){
127 if (Components > 7){
138 if (Components > 19 && ImageInfo.Distance <= 0) {
H A Dgpsinfo.c143 unsigned Tag, Format, Components; local
157 Components = Get32u(DirEntry+4);
166 ByteCount = Components * ComponentSize;
169 printf("GPS tag %x format %s #components %d componentsize %d bytecount %d", Tag, formatStr(Format), Components, ComponentSize,
325 if (++a >= Components) break;
H A Dexif.c590 int Tag, Format, Components; local
598 Components = Get32u(DirEntry+4);
606 if ((unsigned)Components > 0x10000){
607 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
611 ByteCount = Components * BytesPerFormat[Format];
1224 Put32u(Buffer+(*DirIndex) + 4, components); // Components
/external/llvm/lib/Support/
H A DTriple.cpp429 SmallVector<StringRef, 4> Components; local
430 Str.split(Components, "-");
438 if (Components.size() > 0)
439 Arch = parseArch(Components[0]);
441 if (Components.size() > 1)
442 Vendor = parseVendor(Components[1]);
444 if (Components.size() > 2)
445 OS = parseOS(Components[2]);
447 if (Components.size() > 3)
448 Environment = parseEnvironment(Components[
648 unsigned *Components[3] = { &Major, &Minor, &Micro }; local
[all...]
/external/llvm/tools/llvm-config/
H A Dllvm-config.cpp89 /// \param Components - The names of the components to find libraries for.
94 void ComputeLibsForComponents(const std::vector<StringRef> &Components, argument
107 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
109 std::string ComponentLower = Components[i].lower();
113 llvm::errs() << "llvm-config: unknown component name: " << Components[i]
175 std::vector<StringRef> Components; local
332 Components.push_back(Arg);
341 if (Components.empty())
342 Components.push_back("all");
346 ComputeLibsForComponents(Components, RequiredLib
[all...]
/external/clang/lib/CodeGen/
H A DCGVTables.cpp435 const CXXRecordDecl *RD, const VTableComponent *Components,
450 VTableComponent Component = Components[I];
434 CreateVTableInitializer( const CXXRecordDecl *RD, const VTableComponent *Components, unsigned NumComponents, const VTableLayout::VTableThunkTy *VTableThunks, unsigned NumVTableThunks, llvm::Constant *RTTI) argument
H A DCGExpr.cpp2112 llvm::Constant *Components[] = { local
2116 llvm::Constant *Descriptor = llvm::ConstantStruct::getAnon(Components);
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp1247 SmallVector<StringRef, 4> Components; local
1249 Value.split(Components, ".", llvm::array_lengthof(VC));
1251 CE = std::min(Components.size(), llvm::array_lengthof(VC));
1253 if (Components[CI].getAsInteger(10, VC[CI])) {
/external/clang/lib/AST/
H A DVTableBuilder.cpp554 /// Components - vcall and vbase offset components
556 VTableComponentVectorTy Components; member in class:__anon17762::VCallAndVBaseOffsetBuilder
604 const_iterator components_begin() const { return Components.rbegin(); }
605 const_iterator components_end() const { return Components.rend(); }
667 int64_t OffsetIndex = -(int64_t)(3 + Components.size());
718 Components.push_back(
763 Components.push_back(
823 /// Components - The components of the vtable being built.
824 SmallVector<VTableComponent, 64> Components; member in class:__anon17762::ItaniumVTableBuilder
1036 return Components
2445 SmallVector<VTableComponent, 64> Components; member in class:__anon17764::VFTableBuilder
[all...]
/external/clang/lib/Sema/
H A DTreeTransform.h1723 Sema::OffsetOfComponent *Components,
1726 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components,
6940 SmallVector<Component, 4> Components; local
6974 Components.push_back(Comp);
6985 Components.data(), Components.size(),
1721 RebuildOffsetOfExpr(SourceLocation OperatorLoc, TypeSourceInfo *Type, Sema::OffsetOfComponent *Components, unsigned NumComponents, SourceLocation RParenLoc) argument

Completed in 152 milliseconds