HomeSort by relevance Sort by last modified time
    Searched defs:Components (Results 1 - 9 of 9) sorted by null

  /external/jhead/
makernote.c 38 int Tag, Format, Components;
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) {
gpsinfo.c 143 unsigned Tag, Format, Components;
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;
exif.c 590 int Tag, Format, Components;
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];
703 // Extract useful components of tag
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 238 SmallVector<StringRef, 16> Components;
241 Components.push_back(*PathIt);
243 for (auto It = Components.rbegin(), End = Components.rend(); It != End;
  /external/llvm/lib/Support/
Triple.cpp 608 SmallVector<StringRef, 4> Components;
609 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3);
610 if (Components.size() > 0) {
611 Arch = parseArch(Components[0]);
612 SubArch = parseSubArch(Components[0]);
613 if (Components.size() > 1) {
614 Vendor = parseVendor(Components[1]);
615 if (Components.size() > 2) {
616 OS = parseOS(Components[2]);
617 if (Components.size() > 3)
    [all...]
  /external/llvm/tools/llvm-config/
llvm-config.cpp 43 // and required components for all of the available libraries.
45 // Not all components define a library, we also use "library groups" as a way to
54 /// \param VisitedComponents [in] [out] - The set of already visited components.
75 // Only include non-installed components if requested.
101 /// components, in an order suitable for passing to a linker (that is, libraries
104 /// \param Components - The names of the components to find libraries for.
105 /// \param IncludeNonInstalled - Whether non-installed components should be
109 ComputeLibsForComponents(const std::vector<StringRef> &Components,
122 // Visit the components
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 551 /// Components - vcall and vbase offset components
553 VTableComponentVectorTy Components;
599 /// Methods for iterating over the components.
601 const_iterator components_begin() const { return Components.rbegin(); }
602 const_iterator components_end() const { return Components.rend(); }
664 int64_t OffsetIndex = -(int64_t)(3 + Components.size());
716 Components.push_back(
761 Components.push_back(
821 /// Components - The components of the vtable being built
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 596 milliseconds