Home
last modified time | relevance | path

Searched refs:CheckParameters (Results 1 – 14 of 14) sorted by relevance

/external/clang/test/SemaCXX/
Dattr-mode-tmpl.cpp48 void CheckParameters(T1 __attribute__((mode(SI))) paramSI, // expected-note2{{ignored: substi… in CheckParameters() function
95 CheckParameters<int, float>(0, valV4DI, 1.0, valV4DF); in main()
97CheckParameters<EnumType, float>(0, valV4DI, 1.0, valV4DF); // expected-error{{no matching functio… in main()
99CheckParameters<int, int>(0, valV4DI, 1, valV4DF); // expected-error{{no matching function for cal… in main()
/external/v8/src/compiler/
Dsimplified-operator.h222 class CheckParameters final {
224 explicit CheckParameters(const FeedbackSource& feedback) in CheckParameters() function
233 bool operator==(CheckParameters const&, CheckParameters const&);
235 size_t hash_value(CheckParameters const&);
237 std::ostream& operator<<(std::ostream&, CheckParameters const&);
239 CheckParameters const& CheckParametersOf(Operator const*) V8_WARN_UNUSED_RESULT;
254 const CheckParameters& check_parameters() const { return check_parameters_; } in DEFINE_OPERATORS_FOR_FLAGS()
257 CheckParameters check_parameters_; in DEFINE_OPERATORS_FOR_FLAGS()
Dsimplified-operator.cc915 struct Name##Operator final : public Operator1<CheckParameters> { \
917 : Operator1<CheckParameters>( \
920 CheckParameters(FeedbackSource())) {} \
1246 return zone()->New<Operator1<CheckParameters>>( \ in EFFECT_DEPENDENT_OP_LIST()
1249 CheckParameters(feedback)); \ in EFFECT_DEPENDENT_OP_LIST()
1673 bool operator==(CheckParameters const& lhs, CheckParameters const& rhs) { in operator ==()
1677 size_t hash_value(CheckParameters const& p) { in hash_value()
1682 std::ostream& operator<<(std::ostream& os, CheckParameters const& p) { in operator <<()
1686 CheckParameters const& CheckParametersOf(Operator const* op) { in CheckParametersOf()
1695 return OpParameter<CheckParameters>(op); in CheckParametersOf()
Deffect-control-linearizer.cc241 Node* SmiTagOrDeopt(Node* value, const CheckParameters& params,
1985 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckNumber()
2058 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckString()
2238 const CheckParameters& params, in SmiTagOrDeopt()
2450 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedInt32ToTaggedSigned()
2457 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedInt64ToInt32()
2469 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedInt64ToTaggedSigned()
2512 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedUint32ToInt32()
2522 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedUint32ToTaggedSigned()
2557 const CheckParameters& params = CheckParametersOf(node->op()); in LowerCheckedUint64ToInt32()
[all …]
Dsimplified-lowering.cc3041 const CheckParameters& params = CheckParametersOf(node->op()); in VisitNode()
3057 const CheckParameters& params = CheckParametersOf(node->op()); in VisitNode()
/external/google-breakpad/src/common/linux/
Dhttp_upload.cc70 if (!CheckParameters(parameters)) in SendRequest()
200 bool HTTPUpload::CheckParameters(const map<string, string> &parameters) { in CheckParameters() function in google_breakpad::HTTPUpload
Dhttp_upload.h76 static bool CheckParameters(const map<string, string> &parameters);
/external/google-breakpad/src/common/windows/
Dhttp_upload.h117 static bool CheckParameters(const map<wstring, wstring> &parameters);
Dhttp_upload.cc77 if (!CheckParameters(parameters)) { in SendRequest()
403 bool HTTPUpload::CheckParameters(const map<wstring, wstring> &parameters) { in CheckParameters() function in google_breakpad::HTTPUpload
/external/vboot_reference/firmware/lib/cgptlib/include/
Dcgptlib_internal.h81 int CheckParameters(GptData* gpt);
/external/vboot_reference/firmware/lib/cgptlib/
Dcgptlib_internal.c23 int CheckParameters(GptData *gpt) in CheckParameters() function
249 retval = CheckParameters(gpt); in GptSanityCheck()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dmodel_builder.cc1283 RETURN_IF_ERROR(CheckParameters(tf_options)); in IsSupported()
1302 RETURN_IF_ERROR(CheckParameters(params)); in Parse()
1347 Status CheckParameters(const TfLiteLSTMParams* tf_options) { in CheckParameters() function in tflite::gpu::__anon654168380111::LSTMOperationParser
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator.cc1247 Status CheckParameters(const Shape& input_shape, const Shape& output_shape, in CheckParameters() function
1374 TF_RETURN_IF_ERROR(CheckParameters(input_shape, output_shape, fft_rank, in HandleFft()
/external/vboot_reference/tests/
Dcgptlib_test.c262 EXPECT(cases[i].expected_retval == CheckParameters(gpt)); in ParameterTests()