Searched defs:uses (Results 1 - 25 of 26) sorted by relevance

12

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/
H A DCertificateTrustBlock.java20 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 Dcommon-reloc.c49 #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 Dtest-node.cc41 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 DPPCMachineFunctionInfo.h104 /// Whether this uses the PIC Base register or not.
196 void setUsesPICBase(bool uses) { UsesPICBase = uses; } argument
/external/v8/src/compiler/
H A Dverifier.cc33 auto const uses = def->uses(); local
34 return std::find(uses.begin(), uses.end(), use) != uses.end();
126 // kFrameState uses Start as a sentinel.
196 // Branch uses are IfTrue and IfFalse.
198 for (auto use : node->uses()) {
234 // Switch uses are Case and Default.
236 for (auto use : node->uses()) {
[all...]
H A Dgraph-visualizer.cc450 int uses = node->UseCount(); local
452 os_ << "0 " << uses << " "; local
H A Dnode.h180 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 Descape-analysis.cc615 // This node is known to escape, uses do not have to be checked.
625 bool EscapeStatusAnalysis::CheckUsesForEscape(Node* uses, Node* rep, argument
627 for (Edge edge : uses->use_edges()) {
674 uses->op()->EffectInputCount() > 0) {
1406 // Now fix uses of other objects.
/external/vulkan-validation-layers/layers/
H A Dthreading.h64 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 DValue.h105 /// 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 Dnv50_ir_lowering_nvc0.cpp179 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 DAnalysisBasedWarnings.cpp843 /// 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:__anon1295::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 DSelectionDAGNodes.h228 /// 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 Dtest-strings.cc1350 int uses = local
1352 CHECK_EQ(uses, use_counts[v8::Isolate::kBreakIterator]);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.h440 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 Dir_opt.c712 /* 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 Dxmlschemas.c167 * Macros for attribute uses.
4353 * @uses: attribute uses list
4359 xmlSchemaAttrUsesDump(xmlSchemaItemListPtr uses, FILE * output) argument
4368 if ((uses == NULL) || (uses->nbItems == 0))
4372 for (i = 0; i < uses->nbItems; i++) {
4373 use = uses->items[i];
5032 * ATTENTION TODO: This uses pointer comp. for strings.
6237 xmlSchemaItemListPtr uses,
7102 xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaItemListPtr uses, int parentType) argument
14110 xmlSchemaCheckDerivationOKRestriction2to4(xmlSchemaParserCtxtPtr pctxt, int action, xmlSchemaBasicItemPtr item, xmlSchemaBasicItemPtr baseItem, xmlSchemaItemListPtr uses, xmlSchemaItemListPtr baseUses, xmlSchemaWildcardPtr wild, xmlSchemaWildcardPtr baseWild) argument
14418 xmlSchemaItemListPtr uses, baseUses, prohibs = NULL; local
15924 xmlSchemaItemListPtr uses = (xmlSchemaItemListPtr) type->attrUses; local
19368 xmlSchemaItemListPtr uses = WXS_LIST_CAST attrGr->attrUses; local
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen.cc4050 // We don't support phi uses of arguments for now.
4444 // environment uses values which have not been defined yet. These
7073 // We insert a use of the old value to detect unsupported uses of const
8370 TraceInline(target, caller, "target uses rest parameters");
8388 // If the function uses the arguments object check that inlining of functions
8393 TraceInline(target, caller, "target uses arguments object");
8401 TraceInline(target, caller, "target uses new target or this function");
8478 // If the function uses arguments object then bind bind one.
13384 int uses = instruction->UseCount(); local
13387 os << "0 " << uses << " " << NameO
[all...]
/external/guice/lib/build/
H A Dbnd-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 Dfelix-2.0.5.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF/NOTICE META- ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.osgi_3.10.100.v20150529-1857.jarMETA-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 Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/opencv3/samples/java/sbt/sbt/
H A Dsbt-launch.jarmodule.properties org/apache/ivy/Ivy$1.class Ivy.java package org.apache. ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 9630 milliseconds

12