/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/ |
H A D | CertificateTrustBlock.java | 20 private ASN1Sequence uses; field in class:CertificateTrustBlock 24 public CertificateTrustBlock(Set<ASN1ObjectIdentifier> uses) argument 26 this(null, uses, null); 29 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses) argument 31 this(alias, uses, null); 34 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses, Set<ASN1ObjectIdentifier> prohibitions) argument 37 this.uses = toSequence(uses); 51 this.uses = ASN1Sequence.getInstance(obj); 71 return toSet(uses); [all...] |
/external/elfutils/backends/ |
H A D | common-reloc.c | 49 #define RELOC_TYPE(type, uses) \ 56 #define RELOC_TYPE(type, uses) R_NAME (type), 64 #define RELOC_TYPE(type, uses) \ 77 #define RELOC_TYPE(type, uses) [R_TYPE (type)] = uses, 112 uint8_t uses; local 123 uses = EBLHOOK(reloc_valid)[reloc]; 124 return type > ET_NONE && type < ET_CORE && (uses & (1 << (type - 1)));
|
/external/v8/test/cctest/compiler/ |
H A D | test-node.cc | 41 void CheckUseChain(Node* node, Node** uses, int use_count) { argument 43 if (use_count == 1) CHECK(node->OwnedBy(uses[0])); 46 CHECK(!node->OwnedBy(uses[i])); 56 expect_set.insert(uses[i]); 60 // Check that iterating over the uses gives the right counts. 62 for (auto use : node->uses()) { 82 for (Node* use : node->uses()) { 113 for (Node* use : input->uses()) {
|
/external/llvm/lib/Target/PowerPC/ |
H A D | PPCMachineFunctionInfo.h | 104 /// Whether this uses the PIC Base register or not. 196 void setUsesPICBase(bool uses) { UsesPICBase = uses; } argument
|
/external/v8/src/compiler/ |
H A D | verifier.cc | 32 const Node::Uses uses = def->uses(); local 33 return std::find(uses.begin(), uses.end(), use) != uses.end(); 129 // kFrameState uses Start as a sentinel. 197 // Branch uses are IfTrue and IfFalse. 199 for (const Node* use : node->uses()) { 235 // Switch uses are Case and Default. 237 for (const Node* use : node->uses()) { [all...] |
H A D | graph-visualizer.cc | 474 int uses = node->UseCount(); local 476 os_ << "0 " << uses << " "; local
|
H A D | node.h | 180 Uses uses() { return Uses(this); } function in class:v8::internal::compiler::final 476 // A forward iterator to visit the uses edges of a node. 518 // A forward iterator to visit the uses of a node.
|
H A D | escape-analysis.cc | 741 // This node is already known to escape, uses do not have to be checked 751 bool EscapeStatusAnalysis::CheckUsesForEscape(Node* uses, Node* rep, argument 753 for (Edge edge : uses->use_edges()) { 812 uses->op()->EffectInputCount() > 0 && 1544 // Now fix uses of other objects.
|
/external/vulkan-validation-layers/layers/ |
H A D | threading.h | 64 std::unordered_map<T, object_use_data> uses; member in class:counter 69 if (uses.find(object) == uses.end()) { 71 struct object_use_data *use_data = &uses[object]; 76 struct object_use_data *use_data = &uses[object]; 86 while (uses.find(object) != uses.end()) { 90 struct object_use_data *use_data = &uses[object]; 113 while (uses.find(object) != uses [all...] |
/external/llvm/include/llvm/IR/ |
H A D | Value.h | 105 /// User uses this value to find the Use list. 259 /// \brief Change all uses of this to point to a new Value. 261 /// Go through the uses list for this definition and make each use point to 266 /// replaceUsesOutsideBlock - Go through the uses list for this definition and 274 // Methods for handling the chain of uses of this Value. 276 // Materializing a function can introduce new uses, so these methods come in 278 // The methods that start with materialized_ check the uses that are 280 // when using them since you might not get all uses. 316 iterator_range<use_iterator> uses() { function 320 iterator_range<const_use_iterator> uses() cons function [all...] |
/external/mesa3d/src/gallium/drivers/nvc0/codegen/ |
H A D | nv50_ir_lowering_nvc0.cpp | 179 NVC0LegalizePostRA::addTexUse(std::list<TexUse> &uses, argument 183 for (std::list<TexUse>::iterator it = uses.begin(); 184 it != uses.end();) { 190 it = uses.erase(it); 195 uses.push_back(TexUse(usei, insn)); 202 std::list<TexUse> &uses) 221 uses); 225 addTexUse(uses, insn, texi); 233 std::list<TexUse> &uses) 237 for (Value::UseIterator u = v->uses 199 findOverwritingDefs(const Instruction *texi, Instruction *insn, const BasicBlock *term, std::list<TexUse> &uses) argument 231 findFirstUses(const Instruction *texi, const Instruction *insn, std::list<TexUse> &uses) argument 277 std::list<TexUse> *uses; local [all...] |
/external/clang/lib/Sema/ |
H A D | AnalysisBasedWarnings.cpp | 843 /// DiagnoseUninitializedUse -- Helper function for diagnosing uses of an 845 /// emitted for particular types of uses. Returns true if the use was diagnosed 1342 UsesMap uses; member in class:__anon1464::UninitValsDiagReporter 1349 MappedType &V = uses[vd]; 1365 for (const auto &P : uses) { 1372 // Specially handle the case where we have uses of an uninitialized 1381 // Sort the uses by their SourceLocations. While not strictly 1393 // If we have self-init, downgrade all uses to 'may be uninitialized'. 1403 // Release the uses vector. 1407 uses [all...] |
/external/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGNodes.h | 228 /// which link together all the uses of an SDNode. 235 /// Prev, Next - Pointers to the uses list of the SDNode referred by 406 /// List of uses for this SDNode. 485 /// Return true if there are no uses of this node. 493 /// Return the number of uses of this node. This method takes 494 /// time proportional to the number of uses. 540 /// Return true if this iterator is at the end of uses list. 571 /// Provide iteration support to walk over all uses of an SDNode. 578 inline iterator_range<use_iterator> uses() { function in class:llvm::SDNode 581 inline iterator_range<use_iterator> uses() cons function in class:llvm::SDNode [all...] |
/external/v8/test/cctest/ |
H A D | test-strings.cc | 1351 int uses = local 1353 CHECK_EQ(uses, use_counts[v8::Isolate::kBreakIterator]);
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
H A D | nv50_ir.h | 440 void replace(const ValueRef &, bool doSet); // replace all uses of the old value 476 inline int refCount() { return uses.size(); } 488 std::list<ValueRef *> uses; member in class:nv50_ir::Value
|
/external/valgrind/VEX/priv/ |
H A D | ir_opt.c | 712 /* Find any Get uses in st and invalidate any partially or fully 3088 uses to the set and keep on moving backwards. 3107 /* start off by recording IRTemp uses in the next field. */ 3141 /* Note any IRTemp uses made by the current statement. */ 5079 /* Given uses :: array of UShort, indexed by IRTemp 5083 static void aoccCount_Expr ( UShort* uses, IRExpr* e ) argument 5090 uses[e->Iex.RdTmp.tmp]++; 5094 aoccCount_Expr(uses, e->Iex.ITE.cond); 5095 aoccCount_Expr(uses, e->Iex.ITE.iftrue); 5096 aoccCount_Expr(uses, 5149 aoccCount_Stmt( UShort* uses, IRStmt* st ) argument 5740 UShort* uses = LibVEX_Alloc_inline(n_tmps * sizeof(UShort)); local [all...] |
/external/libxml2/ |
H A D | xmlschemas.c | 167 * Macros for attribute uses. 4366 * @uses: attribute uses list 4372 xmlSchemaAttrUsesDump(xmlSchemaItemListPtr uses, FILE * output) argument 4381 if ((uses == NULL) || (uses->nbItems == 0)) 4385 for (i = 0; i < uses->nbItems; i++) { 4386 use = uses->items[i]; 5045 * ATTENTION TODO: This uses pointer comp. for strings. 6250 xmlSchemaItemListPtr uses, 7115 xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaItemListPtr uses, int parentType) argument 14123 xmlSchemaCheckDerivationOKRestriction2to4(xmlSchemaParserCtxtPtr pctxt, int action, xmlSchemaBasicItemPtr item, xmlSchemaBasicItemPtr baseItem, xmlSchemaItemListPtr uses, xmlSchemaItemListPtr baseUses, xmlSchemaWildcardPtr wild, xmlSchemaWildcardPtr baseWild) argument 14431 xmlSchemaItemListPtr uses, baseUses, prohibs = NULL; local 15937 xmlSchemaItemListPtr uses = (xmlSchemaItemListPtr) type->attrUses; local 19381 xmlSchemaItemListPtr uses = WXS_LIST_CAST attrGr->attrUses; local [all...] |
/external/v8/src/crankshaft/ |
H A D | hydrogen.cc | 4184 // We don't support phi uses of arguments for now. 4580 // environment uses values which have not been defined yet. These 7246 // We insert a use of the old value to detect unsupported uses of const 8572 TraceInline(target, caller, "target uses rest parameters"); 8590 // If the function uses the arguments object check that inlining of functions 8595 TraceInline(target, caller, "target uses arguments object"); 8603 TraceInline(target, caller, "target uses new target or this function"); 8673 // If the function uses arguments object then bind bind one. 13485 int uses = instruction->UseCount(); local 13488 os << "0 " << uses << " " << NameO [all...] |
/external/guice/lib/build/ |
H A D | bnd-0.0.384.jar | ... MANDATORY public static final String OPTIONAL public static final String USES public static final String EXCLUDE public static final String INCLUDE ... |
H A D | felix-2.0.5.jar | META-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF/NOTICE META- ... |
/external/icu/tools/srcgen/currysrc/libs/ |
H A D | org.eclipse.osgi_3.10.100.v20150529-1857.jar | META-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.osgi_3.6.1.R36x_v20100806.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.osgi_3.6.2.R36x_v20101103.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/opencv3/samples/java/sbt/sbt/ |
H A D | sbt-launch.jar | module.properties org/apache/ivy/Ivy$1.class Ivy.java package org.apache. ... |
/external/dagger2/lib/ |
H A D | google-java-format-0.1-20151017.042846-2.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ... |