Home
last modified time | relevance | path

Searched +defs:val +defs:type (Results 1 – 25 of 2044) sorted by relevance

12345678910>>...82

/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/lang/invoke/
H A DMethodHandles.java105 public static void arrayElementSetter(byte[] array, int i, byte val) { in arrayElementSetter()
109 public static void arrayElementSetter(boolean[] array, int i, boolean val) { in arrayElementSetter()
113 public static void arrayElementSetter(char[] array, int i, char val) { in arrayElementSetter()
117 public static void arrayElementSetter(short[] array, int i, short val) { in arrayElementSetter()
121 public static void arrayElementSetter(int[] array, int i, int val) { in arrayElementSetter()
125 public static void arrayElementSetter(long[] array, int i, long val) { in arrayElementSetter()
129 public static void arrayElementSetter(float[] array, int i, float val) { in arrayElementSetter()
133 public static void arrayElementSetter(double[] array, int i, double val) { in arrayElementSetter()
155 java.lang.invoke.MethodType type, int leadingArgCount) { in spreadInvoker()
159 public static java.lang.invoke.MethodHandle exactInvoker(java.lang.invoke.MethodType type) { in exactInvoker()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
H A Ddense_to_sparse.cc48 Eigen::half APFloatToEigenHalf(const APFloat& val) { in APFloatToEigenHalf()
53 APFloat EigenHalfToAPFloat(const Eigen::half& val) { in EigenHalfToAPFloat()
91 const ShapedType& type) { in CalculateRandomSparsity()
96 for (const auto val : attr.getValues<APFloat>()) { in CalculateRandomSparsity() local
102 for (const auto val : attr.getValues<int8_t>()) { in CalculateRandomSparsity() local
112 float CalculateBlockSparsity(const ElementsAttr& attr, const ShapedType& type, in CalculateBlockSparsity()
131 for (const auto val : attr.getValues<float>()) data.push_back(val); in CalculateBlockSparsity() local
141 for (const auto& val : attr.getValues<APFloat>()) in CalculateBlockSparsity() local
152 for (const auto val : attr.getValues<int8_t>()) data.push_back(val); in CalculateBlockSparsity() local
178 ShapedType type; in InspectWeight() local
[all …]
/aosp_15_r20/hardware/interfaces/renderscript/1.0/vts/functional/
H A DVtsCopyTests.cpp36 Type type = context->typeCreate(element, 128, 0, 0, false, false, YuvFormat::YUV_NONE); in TEST_P() local
46 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
72 Type type = context->typeCreate(element, 128, 128, 0, false, false, YuvFormat::YUV_NONE); in TEST_P() local
82 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
109 Type type = context->typeCreate(element, 32, 32, 32, false, false, YuvFormat::YUV_NONE); in TEST_P() local
119 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
146 Type type = context->typeCreate(element, 512, 512, 0, false, false, YuvFormat::YUV_NONE); in TEST_P() local
150 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
194 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
246 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
[all …]
/aosp_15_r20/external/ethtool/netlink/
H A Dparser.c40 static void parser_err_invalid_value(struct nl_context *nlctx, const char *val) in parser_err_invalid_value()
61 float val; in parse_float() local
76 unsigned long long val; in __parse_u32() local
111 uint32_t val; in parse_u8() local
158 int nl_parse_flag(struct nl_context *nlctx __maybe_unused, uint16_t type, in nl_parse_flag()
170 int nl_parse_string(struct nl_context *nlctx, uint16_t type, in nl_parse_string()
187 int nl_parse_direct_u32(struct nl_context *nlctx, uint16_t type, in nl_parse_direct_u32()
192 uint32_t val; in nl_parse_direct_u32() local
211 int nl_parse_direct_u8(struct nl_context *nlctx, uint16_t type, in nl_parse_direct_u8()
216 uint8_t val; in nl_parse_direct_u8() local
[all …]
/aosp_15_r20/external/mesa3d/src/compiler/spirv/
H A Dspirv_to_nir.c450 struct vtn_value *val = vtn_untyped_value(b, value_id); in _vtn_fail_value_type_mismatch() local
462 struct vtn_value *val = vtn_untyped_value(b, value_id); in _vtn_fail_value_not_pointer() local
471 vtn_undef_ssa_value(struct vtn_builder *b, const struct glsl_type *type) in vtn_undef_ssa_value()
473 struct vtn_ssa_value *val = vtn_zalloc(b, struct vtn_ssa_value); in vtn_undef_ssa_value() local
504 const struct glsl_type *type) in vtn_const_ssa_value()
506 struct vtn_ssa_value *val = vtn_zalloc(b, struct vtn_ssa_value); in vtn_const_ssa_value() local
546 struct vtn_value *val = vtn_untyped_value(b, value_id); in vtn_ssa_value() local
573 struct vtn_type *type = vtn_get_value_type(b, value_id); in vtn_push_ssa_value() local
579 struct vtn_value *val; in vtn_push_ssa_value() local
607 struct vtn_type *type = vtn_get_value_type(b, value_id); in vtn_push_nir_ssa() local
[all …]
/aosp_15_r20/external/flatbuffers/java/com/google/flatbuffers/
H A DFlexBuffersBuilder.java180 public void putBoolean(boolean val) { in putBoolean()
189 public void putBoolean(String key, boolean val) { in putBoolean()
190 stack.add(Value.bool(putKey(key), val)); in putBoolean() local
221 public void putInt(int val) { in putInt()
230 public void putInt(String key, int val) { in putInt()
239 public void putInt(String key, long val) { in putInt()
320 public void putFloat(String key, float val) { in putFloat()
321 stack.add(Value.float32(putKey(key), val)); in putFloat() local
337 public void putFloat(String key, double val) { in putFloat()
338 stack.add(Value.float64(putKey(key), val)); in putFloat() local
[all …]
/aosp_15_r20/external/open-dice/src/
H A Dcbor_reader.c34 enum CborType* type, in CborPeekInitialValueAndArgument()
35 uint64_t* val) { in CborPeekInitialValueAndArgument()
83 static enum CborReadResult CborReadSize(struct CborIn* in, enum CborType type, in CborReadSize()
104 static enum CborReadResult CborReadStr(struct CborIn* in, enum CborType type, in CborReadStr()
122 static enum CborReadResult CborReadSimple(struct CborIn* in, uint8_t val) { in CborReadSimple()
124 enum CborType type; in CborReadSimple() local
138 enum CborReadResult CborReadInt(struct CborIn* in, int64_t* val) { in CborReadInt()
140 enum CborType type; in CborReadInt() local
158 enum CborReadResult CborReadUint(struct CborIn* in, uint64_t* val) { in CborReadUint()
160 enum CborType type; in CborReadUint() local
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/optional/test/
Dtestable_classes.hpp21 int& val() { return val_; } in val() function
22 const int& val() const { return val_; } in val() function
45 int& val() { return val_; } in val() function
46 const int& val() const { return val_; } in val() function
52 typedef T type; typedef
58 typedef Impl type; typedef
64 typedef const Impl type; typedef
85 int& val(int& i) { return i; } in val() function
86 int& val(Abstract& a) { return a.val(); } in val() function
87 int& val(Impl& a) { return a.val(); } in val() function
[all …]
/aosp_15_r20/external/libxml2/
H A Dxmlschemastypes.c108 xmlSchemaValType type; member
218 xmlSchemaNewValue(xmlSchemaValType type) { in xmlSchemaNewValue()
269 xmlSchemaInitBasicType(const char *name, xmlSchemaValType type, in xmlSchemaInitBasicType()
431 xmlSchemaTypeType type; member
440 xmlSchemaTypeType type; member
452 xmlSchemaTypeType type; member
478 xmlSchemaFreeTypeEntry(void *type, const xmlChar *name ATTRIBUTE_UNUSED) { in xmlSchemaFreeTypeEntry()
891 xmlSchemaIsBuiltInTypeFacet(xmlSchemaTypePtr type, int facetType) in xmlSchemaIsBuiltInTypeFacet()
969 xmlSchemaGetBuiltInType(xmlSchemaValType type) in xmlSchemaGetBuiltInType()
1118 xmlSchemaValueGetAsString(xmlSchemaValPtr val) in xmlSchemaValueGetAsString()
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodHandles.java847 …MethodHandle findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException,… in findStatic()
858 private MethodHandle findVirtualForMH(String name, MethodType type) { in findVirtualForMH()
867 private MethodHandle findVirtualForVH(String name, MethodType type) { in findVirtualForVH()
958 …public MethodHandle findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodEx… in findVirtual()
1052 …public MethodHandle findConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, … in findConstructor()
1329 Class<?> type = refc; in isClassAccessible() local
1418 public MethodHandle findSpecial(Class<?> refc, String name, MethodType type, in findSpecial()
1453 private MethodHandle findSpecial(Method method, MethodType type, in findSpecial()
1507 …public MethodHandle findGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldExcept… in findGetter()
1511 private MethodHandle findAccessor(Class<?> refc, String name, Class<?> type, int kind) in findAccessor()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/5/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java847 …MethodHandle findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException,… in findStatic()
858 private MethodHandle findVirtualForMH(String name, MethodType type) { in findVirtualForMH()
867 private MethodHandle findVirtualForVH(String name, MethodType type) { in findVirtualForVH()
958 …public MethodHandle findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodEx… in findVirtual()
1052 …public MethodHandle findConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, … in findConstructor()
1329 Class<?> type = refc; in isClassAccessible() local
1418 public MethodHandle findSpecial(Class<?> refc, String name, MethodType type, in findSpecial()
1453 private MethodHandle findSpecial(Method method, MethodType type, in findSpecial()
1507 …public MethodHandle findGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldExcept… in findGetter()
1511 private MethodHandle findAccessor(Class<?> refc, String name, Class<?> type, int kind) in findAccessor()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java847 …MethodHandle findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException,… in findStatic()
858 private MethodHandle findVirtualForMH(String name, MethodType type) { in findVirtualForMH()
867 private MethodHandle findVirtualForVH(String name, MethodType type) { in findVirtualForVH()
958 …public MethodHandle findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodEx… in findVirtual()
1052 …public MethodHandle findConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, … in findConstructor()
1329 Class<?> type = refc; in isClassAccessible() local
1418 public MethodHandle findSpecial(Class<?> refc, String name, MethodType type, in findSpecial()
1453 private MethodHandle findSpecial(Method method, MethodType type, in findSpecial()
1507 …public MethodHandle findGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldExcept… in findGetter()
1511 private MethodHandle findAccessor(Class<?> refc, String name, Class<?> type, int kind) in findAccessor()
[all …]
/aosp_15_r20/trusty/kernel/lib/ubsan/
H A Dubsan.c50 static inline void in_ubsan_set(bool val) { in in_ubsan_set()
65 static inline void in_ubsan_set(bool val) { in in_ubsan_set()
78 static int64_t val_signed(const struct type_descriptor* type, in val_signed()
79 value_handle_t val) { in val_signed()
99 static uint64_t val_unsigned(const struct type_descriptor* type, in val_unsigned()
100 value_handle_t val) { in val_unsigned()
111 const struct type_descriptor* type, in render_val()
112 value_handle_t val) { in render_val()
203 const struct type_descriptor* type = data->type; in handle_overflow() local
246 UBSAN_HANDLER(negate_overflow, struct overflow_data* data, value_handle_t val) { in UBSAN_HANDLER()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/
Dattributes.hpp357 typedef typename mpl::not_<is_same<iter, end> >::type type; typedef
427 attribute<Context, Iterator>::type type; typedef
476 typedef std::size_t type; typedef
493 typedef typename fusion::result_of::size<Attribute>::value_type type; typedef
510 typedef typename Attribute::size_type type; typedef
527 typedef typename attribute_size<Attribute>::type type; typedef
552 typedef std::size_t type; typedef
564 difference_type type; typedef
575 typedef std::size_t type; typedef
602 typedef fusion::vector1<Attribute&> type; typedef
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/php/ext/google/protobuf/
H A Dconvert.c74 zval *val, *key_type, *val_type, *klass; in PHP_METHOD() local
87 zval *val, *type, *klass; in PHP_METHOD() local
156 upb_CType pbphp_dtype_to_type(upb_FieldType type) { in pbphp_dtype_to_type()
158 #define CASE(descriptor_type, type) \ in pbphp_dtype_to_type() argument
189 static bool buftouint64(const char *ptr, const char *end, uint64_t *val) { in buftouint64()
218 static bool buftoint64(const char *ptr, const char *end, int64_t *val) { in buftoint64()
356 bool Convert_PhpToUpb(zval *php_val, upb_MessageValue *upb_val, TypeInfo type, in Convert_PhpToUpb()
424 void Convert_UpbToPhp(upb_MessageValue upb_val, zval *php_val, TypeInfo type, in Convert_UpbToPhp()
455 zend_long val = (int32_t)upb_val.uint32_val; in Convert_UpbToPhp() local
501 bool Convert_PhpToUpbAutoWrap(zval *val, upb_MessageValue *upb_val, TypeInfo type, in Convert_PhpToUpbAutoWrap()
/aosp_15_r20/external/protobuf/php/ext/google/protobuf/
H A Dconvert.c74 zval *val, *key_type, *val_type, *klass; in PHP_METHOD() local
87 zval *val, *type, *klass; in PHP_METHOD() local
156 upb_CType pbphp_dtype_to_type(upb_FieldType type) { in pbphp_dtype_to_type()
158 #define CASE(descriptor_type, type) \ in pbphp_dtype_to_type() argument
189 static bool buftouint64(const char *ptr, const char *end, uint64_t *val) { in buftouint64()
218 static bool buftoint64(const char *ptr, const char *end, int64_t *val) { in buftoint64()
356 bool Convert_PhpToUpb(zval *php_val, upb_MessageValue *upb_val, TypeInfo type, in Convert_PhpToUpb()
424 void Convert_UpbToPhp(upb_MessageValue upb_val, zval *php_val, TypeInfo type, in Convert_UpbToPhp()
455 zend_long val = (int32_t)upb_val.uint32_val; in Convert_UpbToPhp() local
501 bool Convert_PhpToUpbAutoWrap(zval *val, upb_MessageValue *upb_val, TypeInfo type, in Convert_PhpToUpbAutoWrap()
/aosp_15_r20/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp409 inline InternalType asInternalType(Type *type) in asInternalType()
453 static size_t typeSize(Type *type) in typeSize()
534 llvm::Type *type = jit->function->getReturnType(); in acquireRoutine() local
592 Value *Nucleus::allocateStackVariable(Type *type, int arraySize) in allocateStackVariable()
853 Value *Nucleus::createLoad(Value *ptr, Type *type, bool isVolatile, unsigned int alignment, bool at… in createLoad()
936 Value *Nucleus::createStore(Value *value, Value *ptr, Type *type, bool isVolatile, unsigned int ali… in createStore()
1054 void Nucleus::createMaskedStore(Value *ptr, Value *val, Value *mask, unsigned int alignment) in createMaskedStore()
1168 static void createScatter(llvm::Value *base, llvm::Value *val, llvm::Value *offsets, llvm::Value *m… in createScatter()
1221 void Scatter(RValue<Pointer<Float>> base, RValue<SIMD::Float> val, RValue<SIMD::Int> offsets, RValu… in Scatter()
1226 void Scatter(RValue<Pointer<Int>> base, RValue<SIMD::Int> val, RValue<SIMD::Int> offsets, RValue<SI… in Scatter()
[all …]
/aosp_15_r20/external/gflags/src/
H A Dgflags.h.in157 std::string type; // the type of the flag: int32, etc member
446 #define GFLAGS_DECLARE_FLAG_REGISTERER_CTOR(type) argument
448 #define GFLAGS_DECLARE_FLAG_REGISTERER_CTOR(type) \ argument
497 #define DEFINE_VARIABLE(type, shorttype, name, value, help) \ argument
528 #define DEFINE_bool(name, val, txt) \ argument
535 #define DEFINE_int32(name, val, txt) \ argument
539 #define DEFINE_uint32(name,val, txt) \ argument
543 #define DEFINE_int64(name, val, txt) \ argument
547 #define DEFINE_uint64(name,val, txt) \ argument
551 #define DEFINE_double(name, val, txt) \ argument
[all …]
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/opt/
Dconstants.cpp243 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) const { in CreateConstant() argument
328 uint32_t type = in CreateInstruction() local
381 uint32_t type = in CreateCompositeInstruction() local
388 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) { in GetConstant()
393 const Constant* ConstantManager::GetNullCompositeConstant(const Type* type) { in GetNullCompositeConstant()
431 const Vector* type, const std::vector<uint32_t>& literal_words) { in GetNumericVectorConstantWithWords()
462 uint32_t ConstantManager::GetFloatConstId(float val) { in GetFloatConstId()
467 const Constant* ConstantManager::GetFloatConst(float val) { in GetFloatConst()
474 uint32_t ConstantManager::GetDoubleConstId(double val) { in GetDoubleConstId()
479 const Constant* ConstantManager::GetDoubleConst(double val) { in GetDoubleConst()
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dconstants.cpp243 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) const { in CreateConstant() argument
328 uint32_t type = in CreateInstruction() local
381 uint32_t type = in CreateCompositeInstruction() local
388 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) { in GetConstant()
393 const Constant* ConstantManager::GetNullCompositeConstant(const Type* type) { in GetNullCompositeConstant()
431 const Vector* type, const std::vector<uint32_t>& literal_words) { in GetNumericVectorConstantWithWords()
462 uint32_t ConstantManager::GetFloatConstId(float val) { in GetFloatConstId()
467 const Constant* ConstantManager::GetFloatConst(float val) { in GetFloatConst()
474 uint32_t ConstantManager::GetDoubleConstId(double val) { in GetDoubleConstId()
479 const Constant* ConstantManager::GetDoubleConst(double val) { in GetDoubleConst()
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DFieldTest.java195 Double val = (Double) f.get(x); in test_getLjava_lang_Object() local
445 char type = types[i]; in testProtectedFieldAccess() local
492 char type = types[i]; in testProtectedFieldAccess() local
510 char type = types[i]; in testProtectedFieldAccess() local
553 char type = types[i]; in testProtectedFieldAccess() local
674 char val = 0; in test_getCharLjava_lang_Object() local
750 double val = 0.0; in test_getDoubleLjava_lang_Object() local
805 float val = 0; in test_getFloatLjava_lang_Object() local
859 int val = 0; in test_getIntLjava_lang_Object() local
915 long val = 0; in test_getLongLjava_lang_Object() local
[all …]
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/opt/
H A Dconstants.cpp243 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) const { in CreateConstant() argument
328 uint32_t type = in CreateInstruction() local
381 uint32_t type = in CreateCompositeInstruction() local
388 const Type* type, const std::vector<uint32_t>& literal_words_or_ids) { in GetConstant()
393 const Constant* ConstantManager::GetNullCompositeConstant(const Type* type) { in GetNullCompositeConstant()
431 const Vector* type, const std::vector<uint32_t>& literal_words) { in GetNumericVectorConstantWithWords()
462 uint32_t ConstantManager::GetFloatConstId(float val) { in GetFloatConstId()
467 const Constant* ConstantManager::GetFloatConst(float val) { in GetFloatConst()
474 uint32_t ConstantManager::GetDoubleConstId(double val) { in GetDoubleConstId()
479 const Constant* ConstantManager::GetDoubleConst(double val) { in GetDoubleConst()
[all …]
/aosp_15_r20/external/igt-gpu-tools/tools/
H A Dintel_infoframes.c139 uint8_t type; member
333 DipType type) in load_infoframe()
388 uint32_t val = INREG(port); in dump_port_info() local
436 uint32_t val; in dump_avi_info() local
535 uint32_t val, vendor_id; in dump_vendor_info() local
570 uint32_t val; in dump_gamut_info() local
596 uint32_t val; in dump_spd_info() local
638 uint32_t val = INREG(reg); in dump_transcoder_info() local
693 static void write_infoframe(Transcoder transcoder, DipType type, in write_infoframe()
714 static void disable_infoframe(Transcoder transcoder, DipType type) in disable_infoframe()
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/mediatek/drivers/spm/mt8188/constraints/
Dmt_spm_rc_bus26m.c179 static int update_rc_condition(int state_id, const void *val) in update_rc_condition()
198 static void update_rc_remain_irqs(const void *val) in update_rc_remain_irqs()
203 static void update_rc_fmaudio_adsp(int type, const void *val) in update_rc_fmaudio_adsp()
221 static void update_rc_usb_peri(const void *val) in update_rc_usb_peri()
236 static void update_rc_usb_infra(const void *val) in update_rc_usb_infra()
251 static void update_rc_status(const void *val) in update_rc_status()
277 int spm_update_rc_bus26m(int state_id, int type, const void *val) in spm_update_rc_bus26m()
377 int spm_get_status_rc_bus26m(unsigned int type, void *priv) in spm_get_status_rc_bus26m()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/utils/common/src/
H A DVehicleObjectPool.cpp36 VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtain(VehiclePropertyType type) { in obtain()
43 VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtain(VehiclePropertyType type, in obtain()
56 VehiclePropertyType type = getPropType(propId); in obtain() local
70 auto val = obtain(VehiclePropertyType::INT32); in obtainInt32() local
76 auto val = obtain(VehiclePropertyType::INT64); in obtainInt64() local
82 auto val = obtain(VehiclePropertyType::FLOAT); in obtainFloat() local
88 auto val = obtain(VehiclePropertyType::STRING); in obtainString() local
98 VehiclePropertyType type, size_t vectorSize) { in obtainRecyclable()

12345678910>>...82