Home
last modified time | relevance | path

Searched refs:type2 (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/openssl/ohos_lite/include/openssl/
Dobjects.h76 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
78 static int nm##_cmp(type1 const *, type2 const *); \
79 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
81 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
82 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
83 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
84 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
113 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
117 type2 const *b = b_; \
120 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/third_party/openssl/include/openssl/
Dobjects.h84 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
86 static int nm##_cmp(type1 const *, type2 const *); \
87 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
89 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
90 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
91 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
121 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
125 type2 const *b = b_; \
128 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Daudio-resampler.c329 #define MAKE_COEFF_LINEAR_INT_FUNC(type,type2,prec) \ argument
335 icoeff[1] = icoeff[3] = (type)(((type2)1 << prec)-1) - x; \
350 #define MAKE_COEFF_CUBIC_INT_FUNC(type,type2,prec) \ argument
354 type2 one = ((type2)1 << prec) - 1; \
355 type2 x = ((gint64) num << prec) / denom; \
356 type2 x2 = (x * x) >> prec; \
357 type2 x3 = (x2 * x) >> prec; \
379 #define INTERPOLATE_INT_LINEAR_FUNC(type,type2,prec,limit) \ argument
386 type2 tmp, c0 = ic[0]; \
391 tmp = ((type2)c[0][i] - (type2)c[1][i]) * c0 + \
[all …]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_quad.c180 struct lp_type type2; in lp_bld_quad_twiddle() local
186 type2 = lp_dst_type; in lp_bld_quad_twiddle()
187 type2.width = (lp_dst_type.width * lp_dst_type.length) / 2; in lp_bld_quad_twiddle()
188 type2.length = 2; in lp_bld_quad_twiddle()
189 type2.floating = 0; in lp_bld_quad_twiddle()
191 type2_ref = lp_build_vec_type(gallivm, type2); in lp_bld_quad_twiddle()
200 dst[i + 0] = lp_build_interleave2(gallivm, type2, src0, src1, 0); in lp_bld_quad_twiddle()
201 dst[i + 1] = lp_build_interleave2(gallivm, type2, src0, src1, 1); in lp_bld_quad_twiddle()
Dlp_bld_swizzle.c188 struct lp_type type2; in lp_build_swizzle_scalar_aos() local
196 type2 = type; in lp_build_swizzle_scalar_aos()
197 type2.floating = FALSE; in lp_build_swizzle_scalar_aos()
198 type2.width *= 2; in lp_build_swizzle_scalar_aos()
199 type2.length /= 2; in lp_build_swizzle_scalar_aos()
201 a = LLVMBuildBitCast(builder, a, lp_build_vec_type(bld->gallivm, type2), ""); in lp_build_swizzle_scalar_aos()
224 …tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type2, shift * type.width), ""… in lp_build_swizzle_scalar_aos()
226 …tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type2, -shift * type.width), … in lp_build_swizzle_scalar_aos()
/third_party/typescript/tests/baselines/reference/
DcontextualTypeShouldBeLiteral.types71 type2: 'y';
72 >type2 : "y"
86 >foo2({ type2: 'y', value: 'done', method() { this; this.value; }}) : void
88 >{ type2: 'y', value: 'done', method() { this; this.value; }} : { type2: …
90 type2: 'y',
91 >type2 : "y"
DcontextualTypeShouldBeLiteral.js33 type2: 'y';
41 type2: 'y', property
139 type2: 'y', property
DcontextualTypeShouldBeLiteral.symbols77 type2: 'y';
78 >type2 : Symbol(Y2.type2, Decl(contextualTypeShouldBeLiteral.ts, 30, 14))
96 type2: 'y',
97 >type2 : Symbol(type2, Decl(contextualTypeShouldBeLiteral.ts, 38, 6))
/third_party/libxml2/
Dxmlregexp.c2293 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument
2301 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes()
2302 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes()
2303 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes()
2304 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes()
2305 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes()
2306 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes()
2309 if (type1 == type2) return(1); in xmlFACompareAtomTypes()
2312 if (type1 > type2) { in xmlFACompareAtomTypes()
2314 type1 = type2; in xmlFACompareAtomTypes()
[all …]
/third_party/typescript/tests/cases/fourslash/
DreferencesForMergedDeclarations.ts17 const [type1Def, type1, namespace1Def, namespace1, value1Def, value1, namespace2, type2, value2] = … constant
18 verify.singleReferenceGroup("interface Foo\nnamespace Foo", [type1, type2]);
/third_party/glslang/glslang/MachineIndependent/
Diomapper.cpp481 auto& type2 = ent2->second.symbol->getType(); in operator ()() local
482 hadError = hadError || typeCheck(&type1, &type2, name.c_str(), false); in operator ()()
498 if (type1.getQualifier().flat != type2.getQualifier().flat || in operator ()()
499 type1.getQualifier().nopersp != type2.getQualifier().nopersp) { in operator ()()
512 type1.isStruct() && !type2.isStruct()) { in operator ()()
517 … && type1.getQualifier().layoutLocation == type2.getQualifier().layoutLocation) return; in operator ()()
519 if (type2.getBasicType() == EbtBlock && in operator ()()
520 type2.isStruct() && !type1.isStruct()) { in operator ()()
523 type2.getStruct()->begin()->type->appendMangledName(name); in operator ()()
525 … && type1.getQualifier().layoutLocation == type2.getQualifier().layoutLocation) return; in operator ()()
[all …]
/third_party/typescript/tests/cases/compiler/
DcontextualTypeShouldBeLiteral.ts33 type2: 'y'; property
41 type2: 'y',
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_bld_blend.c117 struct lp_type type2 = type; in lp_build_mul_norm_expand() local
132 type2.sign = !type.sign; in lp_build_mul_norm_expand()
137 lp_build_unpack2_native(bld->gallivm, type2, wide_type2, b, &bl, &bh); in lp_build_mul_norm_expand()
/third_party/gstreamer/gstreamer/gst/
Dgstvalue.c94 GType type2, GstValueUnionFunc func);
96 GType type2, GstValueIntersectFunc func);
109 GType type2; member
117 GType type2; member
624 #define IS_RANGE_COMPAT(type1,type2,t1,t2) \ argument
625 (((t1) == (type1) && (t2) == (type2)) || ((t2) == (type1) && (t1) == (type2)))
4491 GType type2 = G_VALUE_TYPE (value2); in gst_value_is_subset() local
4508 } else if (type2 == GST_TYPE_LIST) { in gst_value_is_subset()
4958 GType type1, type2; in gst_value_intersect_list_list() local
4964 !gst_value_list_or_array_get_basic_type (value2, &type2) || in gst_value_intersect_list_list()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_memory.cpp59 const Instruction* type2) { in AreLayoutCompatibleStructs() argument
63 if (type2->opcode() != SpvOpTypeStruct) { in AreLayoutCompatibleStructs()
67 if (!HaveLayoutCompatibleMembers(_, type1, type2)) return false; in AreLayoutCompatibleStructs()
69 return HaveSameLayoutDecorations(_, type1, type2); in AreLayoutCompatibleStructs()
76 const Instruction* type2) { in HaveLayoutCompatibleMembers() argument
79 assert(type2->opcode() == SpvOpTypeStruct && in HaveLayoutCompatibleMembers()
82 const auto& type2_operands = type2->operands(); in HaveLayoutCompatibleMembers()
88 if (type1->word(operand) != type2->word(operand)) { in HaveLayoutCompatibleMembers()
90 auto def2 = _.FindDef(type2->word(operand)); in HaveLayoutCompatibleMembers()
103 const Instruction* type2) { in HaveSameLayoutDecorations() argument
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_memory.cpp59 const Instruction* type2) { in AreLayoutCompatibleStructs() argument
63 if (type2->opcode() != SpvOpTypeStruct) { in AreLayoutCompatibleStructs()
67 if (!HaveLayoutCompatibleMembers(_, type1, type2)) return false; in AreLayoutCompatibleStructs()
69 return HaveSameLayoutDecorations(_, type1, type2); in AreLayoutCompatibleStructs()
76 const Instruction* type2) { in HaveLayoutCompatibleMembers() argument
79 assert(type2->opcode() == SpvOpTypeStruct && in HaveLayoutCompatibleMembers()
82 const auto& type2_operands = type2->operands(); in HaveLayoutCompatibleMembers()
88 if (type1->word(operand) != type2->word(operand)) { in HaveLayoutCompatibleMembers()
90 auto def2 = _.FindDef(type2->word(operand)); in HaveLayoutCompatibleMembers()
103 const Instruction* type2) { in HaveSameLayoutDecorations() argument
[all …]
/third_party/spirv-tools/source/val/
Dvalidate_memory.cpp59 const Instruction* type2) { in AreLayoutCompatibleStructs() argument
63 if (type2->opcode() != SpvOpTypeStruct) { in AreLayoutCompatibleStructs()
67 if (!HaveLayoutCompatibleMembers(_, type1, type2)) return false; in AreLayoutCompatibleStructs()
69 return HaveSameLayoutDecorations(_, type1, type2); in AreLayoutCompatibleStructs()
76 const Instruction* type2) { in HaveLayoutCompatibleMembers() argument
79 assert(type2->opcode() == SpvOpTypeStruct && in HaveLayoutCompatibleMembers()
82 const auto& type2_operands = type2->operands(); in HaveLayoutCompatibleMembers()
88 if (type1->word(operand) != type2->word(operand)) { in HaveLayoutCompatibleMembers()
90 auto def2 = _.FindDef(type2->word(operand)); in HaveLayoutCompatibleMembers()
103 const Instruction* type2) { in HaveSameLayoutDecorations() argument
[all …]
/third_party/glslang/Test/baseResults/
Dhlsl.nonstaticMemberFunction.frag.out77 0:23 Function Definition: type2::memFun( ( temp 2-component vector of float)
213 0:23 Function Definition: type2::memFun( ( temp 2-component vector of float)
296 Name 33 "type2"
297 Name 38 "type2::memFun("
323 33(type2): TypeStruct
324 34: TypePointer Function 33(type2)
403 38(type2::memFun(): 35(fvec2) Function None 36
/third_party/libffi/src/riscv/
Dffi.c76 char as_elements, type1, offset2, type2; member
122 ret.type2 = fields[1]->type; in struct_passed_as_elements()
218 marshal_atom(cb, fsi.type2, ((char*)data) + fsi.offset2); in marshal()
264 unmarshal_atom(cb, fsi.type2, ((char*)data) + fsi.offset2); in unmarshal()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dtype_manager_test.cpp836 const Type* type2 = context->get_type_mgr()->GetType(2u); in TEST() local
838 EXPECT_NE(type2, nullptr); in TEST()
839 EXPECT_EQ(*type1, *type2); in TEST()
858 const Type* type2 = context->get_type_mgr()->GetType(3u); in TEST() local
860 EXPECT_NE(type2, nullptr); in TEST()
861 EXPECT_FALSE(type1->IsSame(type2)); in TEST()
/third_party/spirv-tools/test/opt/
Dtype_manager_test.cpp851 const Type* type2 = context->get_type_mgr()->GetType(2u); in TEST() local
853 EXPECT_NE(type2, nullptr); in TEST()
854 EXPECT_EQ(*type1, *type2); in TEST()
873 const Type* type2 = context->get_type_mgr()->GetType(3u); in TEST() local
875 EXPECT_NE(type2, nullptr); in TEST()
876 EXPECT_FALSE(type1->IsSame(type2)); in TEST()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dtype_manager_test.cpp836 const Type* type2 = context->get_type_mgr()->GetType(2u); in TEST() local
838 EXPECT_NE(type2, nullptr); in TEST()
839 EXPECT_EQ(*type1, *type2); in TEST()
858 const Type* type2 = context->get_type_mgr()->GetType(3u); in TEST() local
860 EXPECT_NE(type2, nullptr); in TEST()
861 EXPECT_FALSE(type1->IsSame(type2)); in TEST()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/
Dmeson.build10 '/wd4245', # 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch
14 '/wd4244', # 'conversion' conversion from 'type1' to 'type2', possible loss of data
/third_party/glslang/Test/
Dhlsl.nonstaticMemberFunction.frag21 struct type2
/third_party/openssl/doc/man1/
Dopenssl-storeutl.pod.in83 The arg must be formatted as C</type0=value0/type1=value1/type2=...>.
102 The issuer arg must be formatted as C</type0=value0/type1=value1/type2=...>,

1234