HomeSort by relevance Sort by last modified time
    Searched refs:Constraints (Results 26 - 50 of 214) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
InlineAsm.h 42 std::string AsmString, Constraints;
49 const std::string &Constraints, bool hasSideEffects,
64 StringRef Constraints, bool hasSideEffects,
83 const std::string &getConstraintString() const { return Constraints; }
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
152 /// isMultipleAlternative - '|': has multiple-alternative constraints.
155 /// multipleAlternatives - If there are multiple alternative constraints,
176 /// constraints and their prefixes. If this returns an empty vector, and if
180 /// ParseConstraints - Parse the constraints of this inlineasm object,
183 return ParseConstraints(Constraints);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
InlineAsm.h 42 std::string AsmString, Constraints;
49 const std::string &Constraints, bool hasSideEffects,
64 StringRef Constraints, bool hasSideEffects,
83 const std::string &getConstraintString() const { return Constraints; }
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
152 /// isMultipleAlternative - '|': has multiple-alternative constraints.
155 /// multipleAlternatives - If there are multiple alternative constraints,
176 /// constraints and their prefixes. If this returns an empty vector, and if
180 /// ParseConstraints - Parse the constraints of this inlineasm object,
183 return ParseConstraints(Constraints);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
InlineAsm.h 42 std::string AsmString, Constraints;
49 const std::string &Constraints, bool hasSideEffects,
64 StringRef Constraints, bool hasSideEffects,
83 const std::string &getConstraintString() const { return Constraints; }
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
152 /// isMultipleAlternative - '|': has multiple-alternative constraints.
155 /// multipleAlternatives - If there are multiple alternative constraints,
176 /// constraints and their prefixes. If this returns an empty vector, and if
180 /// ParseConstraints - Parse the constraints of this inlineasm object,
183 return ParseConstraints(Constraints);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InlineAsm.h 42 std::string AsmString, Constraints;
49 const std::string &Constraints, bool hasSideEffects,
64 StringRef Constraints, bool hasSideEffects,
83 const std::string &getConstraintString() const { return Constraints; }
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
152 /// isMultipleAlternative - '|': has multiple-alternative constraints.
155 /// multipleAlternatives - If there are multiple alternative constraints,
176 /// constraints and their prefixes. If this returns an empty vector, and if
180 /// ParseConstraints - Parse the constraints of this inlineasm object,
183 return ParseConstraints(Constraints);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java 37 * Tests for {@code Constraints}.
65 Collection<String> constrained = Constraints.constrainedCollection(
79 Collection<String> constrained = Constraints.constrainedCollection(
95 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
110 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
125 SortedSet<String> constrained = Constraints.constrainedSortedSet(
144 SortedSet<String> constrained = Constraints.constrainedSortedSet(
172 List<String> constrained = Constraints.constrainedList(
201 List<String> constrained = Constraints.constrainedList(
210 List<String> constrained = Constraints.constrainedList
    [all...]
  /external/webrtc/talk/app/webrtc/
mediaconstraintsinterface.cc 37 // Constraints declared as static members in mediastreaminterface.h
38 // Specified by draft-alvestrand-constraints-resolution-00b
48 // Audio constraints.
88 // Below constraints should be used during PeerConnection construction.
124 bool MediaConstraintsInterface::Constraints::FindFirst(
126 for (Constraints::const_iterator iter = begin(); iter != end(); ++iter) {
136 // |key| and return its value as |value|. |constraints| can be null.
138 // among the mandatory constraints.
142 // Note: Because this uses FindFirst, repeated optional constraints whose
145 bool FindConstraint(const MediaConstraintsInterface* constraints,
    [all...]
localaudiosource.cc 42 // Convert constraints to audio options. Return false if constraints are
44 void FromConstraints(const MediaConstraintsInterface::Constraints& constraints,
46 // This design relies on the fact that all the audio constraints are actually
47 // "options", i.e. boolean-valued and always satisfiable. If the constraints
48 // are extended to include non-boolean values or actual format constraints,
74 for (const auto& constraint : constraints) {
90 const MediaConstraintsInterface* constraints) {
93 source->Initialize(options, constraints);
    [all...]
videosource.cc 106 // Fills |format_out| with the max width and height allowed by |constraints|.
108 const MediaConstraintsInterface::Constraints& constraints,
110 typedef MediaConstraintsInterface::Constraints::const_iterator
114 for (ConstraintsIterator constraints_it = constraints.begin();
115 constraints_it != constraints.end(); ++constraints_it)
181 // These are actually options, not constraints, so they can be satisfied
209 // Returns a vector of cricket::VideoFormat that best match |constraints|.
211 const MediaConstraintsInterface::Constraints& mandatory,
212 const MediaConstraintsInterface::Constraints& optional
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrDesc.h 27 // Operand constraints
66 /// Lower 16 bits are used to specify which constraints are set. The higher 16
67 /// bits are used to specify the value of constraints (4 bits each).
68 unsigned Constraints;
152 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
154 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/llvm/lib/IR/
ConstantsContext.h 396 StringRef Constraints;
402 InlineAsmKeyType(StringRef AsmString, StringRef Constraints,
405 : AsmString(AsmString), Constraints(Constraints), FTy(FTy),
409 : AsmString(Asm->getAsmString()), Constraints(Asm->getConstraintString()),
416 AsmString == X.AsmString && Constraints == X.Constraints &&
424 Constraints == Asm->getConstraintString() &&
428 return hash_combine(AsmString, Constraints, HasSideEffects, IsAlignStack,
435 return new InlineAsm(FTy, AsmString, Constraints, HasSideEffects
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.h 132 /// Adds constraints and types for result registers.
135 std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes,
  /libcore/ojluni/src/main/java/sun/security/util/
DisabledAlgorithmConstraints.java 43 * Algorithm constraints for disabled algorithms property
64 private final Constraints algorithmConstraints;
67 * Initialize algorithm constraints with the specified security property.
70 * algorithm constraints
77 * Initialize algorithm constraints with the specified security property
81 * algorithm constraints
88 algorithmConstraints = new Constraints(disabledAlgorithms);
108 * Checks if the key algorithm has been disabled or constraints have been
117 * Checks if the key algorithm has been disabled or if constraints have
133 * algorithms are allowed, certificate constraints, and th
    [all...]
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 611 SmallVector<std::string, 4> Constraints;
614 NumInputs, OpExprs, Constraints, Clobbers,
640 ConstraintRefs[i] = StringRef(Constraints[i]);
726 ExprVector Constraints;
735 Constraints, Exprs, AsmString.get(),
746 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
762 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
766 assert(Names.size() == Constraints.size() &&
767 Constraints.size() == Exprs.size() && "Input operand size mismatch!");
795 Constraints, Exprs, AsmString.get(), Clobbers, T.getCloseLocation())
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
69 /// \brief The lower 16 bits are used to specify which constraints are set.
70 /// The higher 16 bits are used to specify the value of constraints (4 bits
72 uint32_t Constraints;
165 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
167 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 105 std::vector<ConstraintInfo> Constraints;
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.h 105 std::vector<ConstraintInfo> Constraints;
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
  /external/v8/src/compiler/
register-allocator-verifier.h 205 typedef ZoneVector<InstructionConstraint> Constraints;
231 Constraints* constraints() { return &constraints_; } function in class:v8::internal::compiler::final
257 Constraints constraints_;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
83 /// \brief The lower 16 bits are used to specify which constraints are set.
84 /// The higher 16 bits are used to specify the value of constraints (4 bits
86 uint32_t Constraints;
190 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;

Completed in 2519 milliseconds

12 3 4 5 6 7 8 9