/third_party/node/deps/npm/node_modules/aproba/ |
H A D | index.js | 20 function addSchema (schema, arity) { 21 const group = arity[schema.length] = arity[schema.length] || [] 32 const arity = {} 40 addSchema(schema, arity) 42 addSchema(schema.replace(/E.*$/, 'E'), arity) 43 addSchema(schema.replace(/E/, 'Z'), arity) 44 if (schema.length === 1) addSchema('', arity) 47 let matching = arity[args.length] 49 throw wrongNumberOfArgs(Object.keys(arity), arg [all...] |
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | bignum_mod_raw.py | 42 arity = 2 variable in BignumModRawSub 61 arity = 1 variable in BignumModRawFixQuasiReduction 92 arity = 2 variable in BignumModRawMul 116 arity = 1 variable in BignumModRawInvPrime 141 arity = 2 variable in BignumModRawAdd 158 arity = 1 variable in BignumModRawConvertRep 244 arity = 1 variable in BignumModRawConvertToMont 257 arity = 1 variable in BignumModRawConvertFromMont 270 arity = 1 variable in BignumModRawModNegate
|
H A D | bignum_common.py | 114 arity: the number of operands for the operation. Currently supported 126 arity = 2 variable in OperationCommon 127 suffix = False # for arity = 1, symbol can be prefix (default) or suffix 145 if self.arity == 1: 147 elif self.arity == 2: 181 if self.arity == 1: 187 if self.arity == 2: 199 if self.arity == 1: 204 elif self.arity == 2: 230 if cls.arity [all...] |
H A D | ecp.py | 25 arity = 1 variable in EcpP192R1Raw 102 arity = 1 variable in EcpP224R1Raw 181 arity = 1 variable in EcpP256R1Raw 265 arity = 1 variable in EcpP384R1Raw 388 arity = 1 variable in EcpP521R1Raw 495 arity = 1 variable in EcpP192K1Raw 567 arity = 1 variable in EcpP224K1Raw 641 arity = 1 variable in EcpP256K1Raw 717 arity = 1 variable in EcpP255Raw 786 arity variable in EcpP448Raw [all...] |
H A D | bignum_mod.py | 42 arity = 2 variable in BignumModMul 64 arity = 2 variable in BignumModSub 79 arity = 1 variable in BignumModInvNonMont 96 arity = 1 variable in BignumModInvMont
|
H A D | bignum_core.py | 74 arity = 1 variable in BignumCoreShiftL 294 arity = 2 variable in BignumCoreMul 891 arity = 1 variable in BignumCoreZeroCheckCT
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-operator.cc | 61 return os << p.arity() << ", " << p.start_index(); in operator <<() 72 return lhs.arity() == rhs.arity() && lhs.frequency() == rhs.frequency() && in operator ==() 82 return base::hash_combine(p.arity(), p.frequency(), in hash_value() 87 return os << p.arity() << ", " << p.frequency(); in operator <<() 98 return os << p.arity() << ", " << p.frequency() << ", " << p.convert_mode() in operator <<() 111 return os << p.arity() << ", " << p.start_index(); in operator <<() 123 return lhs.id() == rhs.id() && lhs.arity() == rhs.arity(); in operator ==() 134 return base::hash_combine(p.id(), p.arity()); in hash_value() 860 CallForwardVarargs(size_t arity, uint32_t start_index) CallForwardVarargs() argument 870 Call( size_t arity, CallFrequency const& frequency, FeedbackSource const& feedback, ConvertReceiverMode convert_mode, SpeculationMode speculation_mode, CallFeedbackRelation feedback_relation) Call() argument 897 CallWithSpread( uint32_t arity, CallFrequency const& frequency, FeedbackSource const& feedback, SpeculationMode speculation_mode, CallFeedbackRelation feedback_relation) CallWithSpread() argument 919 CallRuntime(Runtime::FunctionId id, size_t arity) CallRuntime() argument 926 CallRuntime(const Runtime::Function* f, size_t arity) CallRuntime() argument 950 ConstructForwardVarargs( size_t arity, uint32_t start_index) ConstructForwardVarargs() argument 962 Construct(uint32_t arity, CallFrequency const& frequency, FeedbackSource const& feedback) Construct() argument 987 ConstructWithSpread( uint32_t arity, CallFrequency const& frequency, FeedbackSource const& feedback) ConstructWithSpread() argument 1259 CreateArray( size_t arity, base::Optional<AllocationSiteRef> site) CreateArray() argument 1299 CreateBoundFunction(size_t arity, const MapRef& map) CreateBoundFunction() argument [all...] |
H A D | js-operator.h | 118 ConstructForwardVarargsParameters(size_t arity, uint32_t start_index) in ConstructForwardVarargsParameters() argument 119 : bit_field_(ArityField::encode(arity) | in ConstructForwardVarargsParameters() 122 size_t arity() const { return ArityField::decode(bit_field_); } in arity() function in v8::internal::compiler::final 149 // Defines the arity (parameters plus the target and new target) and the 158 ConstructParameters(uint32_t arity, CallFrequency const& frequency, in ConstructParameters() argument 160 : arity_(arity), frequency_(frequency), feedback_(feedback) { in ConstructParameters() 161 DCHECK_GE(arity, kExtraConstructInputCount); in ConstructParameters() 162 DCHECK(is_int32(arity)); in ConstructParameters() 165 // TODO(jgruber): Consider removing `arity()` and just storing the arity 171 uint32_t arity() const { return arity_; } arity() function in v8::internal::compiler::final 198 CallForwardVarargsParameters(size_t arity, uint32_t start_index) CallForwardVarargsParameters() argument 202 size_t arity() const { return ArityField::decode(bit_field_); } arity() function in v8::internal::compiler::final 237 CallParameters(size_t arity, CallFrequency const& frequency, FeedbackSource const& feedback, ConvertReceiverMode convert_mode, SpeculationMode speculation_mode, CallFeedbackRelation feedback_relation) CallParameters() argument 259 size_t arity() const { return ArityField::decode(bit_field_); } arity() function in v8::internal::compiler::final 313 CallRuntimeParameters(Runtime::FunctionId id, size_t arity) CallRuntimeParameters() argument 317 size_t arity() const { return arity_; } arity() function in v8::internal::compiler::final 569 CreateArrayParameters(size_t arity, base::Optional<AllocationSiteRef> site) CreateArrayParameters() argument 572 size_t arity() const { return arity_; } arity() function in v8::internal::compiler::final 651 CreateBoundFunctionParameters(size_t arity, const MapRef& map) CreateBoundFunctionParameters() argument 654 size_t arity() const { return arity_; } arity() function in v8::internal::compiler::final [all...] |
H A D | js-typed-lowering.cc | 1502 void ReduceBuiltin(JSGraph* jsgraph, Node* node, Builtin builtin, int arity, in ReduceBuiltin() argument 1550 const int argc = arity + BuiltinArguments::kNumExtraArgsWithReceiver; in ReduceBuiltin() 1558 int cursor = arity + kStubAndReceiver + BuiltinArguments::kNumExtraArgs; in ReduceBuiltin() 1582 DCHECK_LE(2u, p.arity()); in ReduceJSConstructForwardVarargs() 1583 int const arity = static_cast<int>(p.arity() - 2); in ReduceJSConstructForwardVarargs() local 1599 jsgraph()->Constant(JSParameterCount(arity))); in ReduceJSConstructForwardVarargs() 1604 graph()->zone(), callable.descriptor(), arity + 1, in ReduceJSConstructForwardVarargs() 1615 int const arity = p.arity_without_implicit_args(); in ReduceJSConstruct() local 1638 jsgraph()->Constant(JSParameterCount(arity))); in ReduceJSConstruct() 1655 int const arity = static_cast<int>(p.arity() - 2); ReduceJSCallForwardVarargs() local 1683 int arity = p.arity_without_implicit_args(); ReduceJSCall() local 1780 ReduceBuiltin(jsgraph(), node, shared->builtin_id(), arity, flags); ReduceJSCall() local [all...] |
H A D | escape-analysis.cc | 416 int arity = effect_phi->op()->EffectInputCount(); in MergeInputs() local 420 buffer_.reserve(arity + 1); in MergeInputs() 434 for (int i = 1; i < arity; ++i) { in MergeInputs() 460 for (int i = 0; i < arity; ++i) { in MergeInputs() 473 DCHECK_EQ(2, arity); in MergeInputs() 476 } else if (num_defined_inputs < arity) { in MergeInputs() 481 DCHECK_EQ(num_defined_inputs, arity); in MergeInputs() 489 graph_->common()->Phi(MachineRepresentation::kTagged, arity), in MergeInputs() 490 arity + 1, &buffer_.front()); in MergeInputs()
|
H A D | js-intrinsic-lowering.cc | 98 static_cast<int>(CallRuntimeParametersOf(node->op()).arity()); in ReduceCopyDataPropertiesWithExcludedPropertiesOnStack() 336 int const arity = in ReduceCall() local 337 static_cast<int>(CallRuntimeParametersOf(node->op()).arity()); in ReduceCall() 341 node->InsertInput(graph()->zone(), arity, feedback); in ReduceCall() 344 javascript()->Call(JSCallNode::ArityForArgc(arity - kTargetAndReceiver))); in ReduceCall()
|
H A D | js-call-reducer.cc | 911 const int arity, Node* effect) in FastApiCallReducerAssembler() 919 arity_(arity) { in FastApiCallReducerAssembler() 2517 size_t const arity = p.arity_without_implicit_args(); 2522 javascript()->CreateArray(arity, base::nullopt)); 2567 int arity = p.arity_without_implicit_args(); 2569 if (arity < 2) { 2572 if (arity == 0) { 2578 DCHECK_EQ(arity, 1); 2582 --arity; 2586 node, javascript()->Call(JSCallNode::ArityForArgc(arity), 906 FastApiCallReducerAssembler( JSCallReducer* reducer, Node* node, const FunctionTemplateInfoRef function_template_info, const FastApiCallFunctionVector& c_candidate_functions, Node* receiver, Node* holder, const SharedFunctionInfoRef shared, Node* target, const int arity, Node* effect) FastApiCallReducerAssembler() argument [all...] |
H A D | js-create-lowering.cc | 630 int const arity = static_cast<int>(p.arity()); in ReduceJSCreateArray() local 664 if (arity == 0) { in ReduceJSCreateArray() 669 } else if (arity == 1) { in ReduceJSCreateArray() 696 } else if (arity <= JSArray::kInitialMaxFastElementArray) { in ReduceJSCreateArray() 701 values.reserve(p.arity()); in ReduceJSCreateArray() 702 for (int i = 0; i < arity; ++i) { in ReduceJSCreateArray() 885 int const arity = static_cast<int>(p.arity()); in ReduceJSCreateBoundFunction() local 894 if (arity > in ReduceJSCreateBoundFunction() [all...] |
H A D | code-assembler.h | 1158 TNode<Int32T> arity = Int32Constant(argc); in TailCallRuntime() local 1159 return TailCallRuntimeImpl(function, arity, context, in TailCallRuntime() 1164 void TailCallRuntime(Runtime::FunctionId function, TNode<Int32T> arity, in TailCallRuntime() argument 1166 return TailCallRuntimeImpl(function, arity, context, in TailCallRuntime() 1236 TNode<Int32T> arity = Int32Constant(argc); in CallJS() local 1239 CAST(function), {}, arity, {receiver, args...})); in CallJS() 1246 TNode<Int32T> arity = Int32Constant(argc); in ConstructJSWithTarget() local 1250 CAST(function), CAST(new_target), arity, in ConstructJSWithTarget() 1342 void TailCallRuntimeImpl(Runtime::FunctionId function, TNode<Int32T> arity, 1370 TNode<Int32T> arity, st 1541 CodeAssemblerParameterizedLabelBase(CodeAssembler* assembler, size_t arity, CodeAssemblerLabel::Type type) CodeAssemblerParameterizedLabelBase() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
H A D | demangle.cc | 34 int arity; member 546 static bool ParseOperatorName(State *state, int *arity); 918 static bool ParseOperatorName(State *state, int *arity) { in ParseOperatorName() argument 929 if (arity != nullptr) { in ParseOperatorName() 930 *arity = 1; in ParseOperatorName() 937 if (ParseOneCharToken(state, 'v') && ParseDigit(state, arity) && in ParseOperatorName() 954 if (arity != nullptr) { in ParseOperatorName() 955 *arity = p->arity; in ParseOperatorName() 1701 int arity in ParseExpression() local [all...] |
/third_party/optimized-routines/math/test/ |
H A D | ulp.c | 285 int arity; member 658 if (f->arity == 1 && f->singleprec) in cmp() 660 else if (f->arity == 2 && f->singleprec) in cmp() 662 else if (f->arity == 1 && !f->singleprec) in cmp() 664 else if (f->arity == 2 && !f->singleprec) in cmp() 707 int arity = f->arity; in parsegen() local 735 if (arity == 1) in parsegen() 746 else if (arity == 2) in parsegen()
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-assembler.cc | 449 uint32_t arity, in InitMerge() 452 // <-- num_locals --> <-- stack_depth -->^stack_base <-- arity --> in InitMerge() 463 uint32_t target_height = stack_base + arity; in InitMerge() 485 arity <= 1 ? kRegistersAllowed : kRegistersNotAllowed; in InitMerge() 488 base::VectorOf(source_begin + stack_base + discarded, arity)) { in InitMerge() 498 target_begin + stack_base, arity, keep_merge_stack_slots, in InitMerge() 504 auto merge_region = base::VectorOf(target_begin + stack_base, arity); in InitMerge() 715 void LiftoffAssembler::MaterializeMergedConstants(uint32_t arity) { in MaterializeMergedConstants() argument 716 // Materialize constants on top of the stack ({arity} many), and locals. in MaterializeMergedConstants() 719 {base::VectorOf(stack_base + cache_state_.stack_state.size() - arity, in MaterializeMergedConstants() 447 InitMerge(const CacheState& source, uint32_t num_locals, uint32_t arity, uint32_t stack_depth) InitMerge() argument 777 MergeStackWith(CacheState& target, uint32_t arity, JumpDirection jump_direction) MergeStackWith() argument [all...] |
/third_party/skia/src/utils/ |
H A D | SkCallableTraits.h | 16 static constexpr std::size_t arity = sizeof...(Args); member 18 static_assert(N < arity, "");
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyBuilder.java | 94 if (block.arity() == Arity.ONE_ARGUMENT) { in addMessage() 123 if (block.arity() == Arity.ONE_ARGUMENT) { in addEnum()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | opcode.c | 32 .arity = N, \
|
H A D | opcode.h | 20 unsigned int arity:2; member
|
/third_party/node/deps/v8/src/wasm/ |
H A D | function-body-decoder-impl.h | 790 uint32_t arity = 0; member 803 DCHECK_GT(arity, i); in operator []() 804 return arity == 1 ? vals.first : vals.array[i]; in operator []() 2371 c->start_merge.arity = 0; in DecodeFunctionBody() 2372 c->end_merge.arity = 1; in DecodeFunctionBody() 2514 if (c.start_merge.arity) Append("%u-", c.start_merge.arity); 2515 Append("%u", c.end_merge.arity); 2999 uint32_t arity = 0; in DECODE() local 3015 arity in DECODE() 3603 InitMerge(Merge<Value>* merge, uint32_t arity, func get_val) InitMerge() argument 5286 uint32_t arity = merge->arity; TypeCheckStackAgainstMerge() local [all...] |
H A D | graph-builder-interface.cc | 268 for (uint32_t i = 0; i < block->start_merge.arity; ++i) { in Loop() 329 uint32_t arity = block->end_merge.arity; in PopControl() local 330 if (arity > 0) { in PopControl() 331 Value* stack_base = decoder->stack_value(arity); in PopControl() 332 for (uint32_t i = 0; i < arity; i++) { in PopControl() 346 DCHECK_EQ(block->start_merge.arity, block->end_merge.arity); in PopControl() 348 block->start_merge.arity > 0 ? &block->start_merge[0] : nullptr; in PopControl() 517 uint32_t value_count = target->br_merge()->arity; in BrOrRet() [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | jcommander-1.27.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/beust/
com/beust/jcommander/
com/beust/jcommander/converters/
... |
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.cc | 153 CheckArityRestrictions(formals.arity, kind, formals.has_rest, in PreParseFunction() 312 CheckArityRestrictions(formals.arity, kind, formals.has_rest, in ParseFunctionLiteral()
|