HomeSort by relevance Sort by last modified time
    Searched refs:Required (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/utils/fpcmp/
fpcmp.cpp 22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required);
24 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
  /external/llvm/include/llvm/ADT/
DAGDeltaAlgorithm.h 23 /// removing any single element not required by the dependencies on the other
34 /// is not required to satisfy this property, but the algorithm will run
69 const changeset_ty &Required) {}
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 26 // the required set, we no longer consider them for elimination. For strictly
29 // this by allowing the required set to be minimized as well, but need more test
121 const changeset_ty &Required) {
122 DDA.UpdatedSearchState(Changes, Sets, Required);
147 /// \p Required changes from the cache, executing the test if necessary.
151 /// \param Required - The set of changes which have previously been
152 /// established to be required.
154 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
161 const changeset_ty &Required;
167 DDAI.UpdatedSearchState(Changes, Sets, Required);
    [all...]
YAMLTraits.cpp 94 bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault,
107 if (Required)
108 setError(CurrentNode, Twine("missing required key '") + Key + "'");
384 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault,
387 if (Required || !SameAsDefault) {
CommandLine.cpp 417 return O->getNumOccurrencesFlag() == cl::Required ||
758 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
808 // Loop over args and make sure all required args are specified!
812 case Required:
    [all...]
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 62 cl::Required);
65 cl::Required);
  /external/clang/lib/CodeGen/
CGCall.h 101 /// The number of required arguments, or ~0 if the signature does
112 /// Compute the arguments required by the given formal prototype,
182 RequiredArgs Required;
192 CGFunctionInfo() : Required(RequiredArgs::All) {}
199 RequiredArgs required);
211 bool isVariadic() const { return Required.allowsOptionalArgs(); }
212 RequiredArgs getRequiredArgs() const { return Required; }
260 ID.AddInteger(Required.getOpaqueData());
267 RequiredArgs required,
275 ID.AddInteger(required.getOpaqueData())
    [all...]
  /external/llvm/lib/CodeGen/
ScoreboardHazardRecognizer.cpp 153 case InstrStage::Required:
154 // Required FUs conflict with both reserved and required ones
158 // Reserved FUs can conflict only with required ones.
205 case InstrStage::Required:
206 // Required FUs conflict with both reserved and required ones
210 // Reserved FUs can conflict only with required ones.
222 if (IS->getReservationKind() == InstrStage::Required)
ScheduleDAG.cpp 65 bool SUnit::addPred(const SDep &D, bool Required) {
71 if (!Required && I->getSUnit() == D.getSUnit())
  /external/llvm/lib/IR/
Pass.cpp 263 Required.push_back(ID);
268 Required.push_back(&ID);
273 Required.push_back(&ID);
  /external/valgrind/main/helgrind/tests/
tc13_laog1.stderr.exp 18 Required order was established by acquisition of lock at 0x........
hg02_deadlock.stderr.exp 26 Required order was established by acquisition of lock at 0x........
tc15_laog_lockdel.stderr.exp 20 Required order was established by acquisition of lock at 0x........
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 34 OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
  /external/llvm/include/llvm/
PassAnalysisSupport.h 42 // Sets of analyses required and preserved by a pass
43 VectorType Required, RequiredTransitive, Preserved;
49 // addRequired - Add the specified ID to the required set of the usage info
108 const VectorType &getRequiredSet() const { return Required; }
163 // that are required by the current pass (to implement getAnalysis()).
214 "'required' by pass!");
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 238 const Counters &Required) {
264 if (Required.Array[i] <= WaitedOn.Array[i])
270 unsigned Value = LastIssued.Array[i] - Required.Array[i];
  /external/libppp/src/
ccp.h 78 unsigned required : 1; member in struct:ccp_config::__anon10740
128 int (*Required)(struct fsm *); /* Must negotiate ? */
ccp.c 218 ccp->cfg.mppe.required ? ", required" : "");
263 ccp->cfg.mppe.required = 0;
287 * Is ccp *REQUIRED* ?
288 * We ask each of the configured ccp protocols if they're required and
291 * It's not possible for the peer to reject a required ccp protocol
294 * If ccp is required but not open, the NCP layer should not push
304 (*algorithm[f]->Required)(&ccp->fsm))
507 (*algorithm[f]->Required)(&ccp->fsm) &&
509 /* Blow it all away - we haven't negotiated a required algorithm *
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 192 cl::Required);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 58 VALUE MS-BAP-Usage Required 2
  /external/llvm/include/llvm/Support/
YAMLTraits.h 411 bool Required) {
415 if ( this->preflightKey(Key, Required, sameAsDefault, UseDefault,
417 yamlize(*this, Val, Required);
427 void processKey(const char *Key, T &Val, bool Required) {
430 if ( this->preflightKey(Key, Required, false, UseDefault, SaveInfo) ) {
431 yamlize(*this, Val, Required);
    [all...]
  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 44 cl::Required);
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 412 bool addPred(const SDep &D, bool Required = true);
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 38 Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));

Completed in 884 milliseconds

1 2