Home
last modified time | relevance | path

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

12

/external/openssl/crypto/objects/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1062 type2 const *b = b_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/openssl/include/openssl/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1062 type2 const *b = b_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/skia/src/animator/
DSkScript.cpp1264 SkOpType type2; in processOp() local
1265 fTypeStack.pop(&type2); in processOp()
1266 SkOpType type1 = type2; in processOp()
1274 SkTSwap(type1, type2); in processOp()
1291 if (type2 == kObject && (type2 & attributes->fLeftType) == 0) { in processOp()
1293 val.fType = ToDisplayType(type2); in processOp()
1298 type2 = ToOpType(val.fType); in processOp()
1302 if (type1 != type2) { in processOp()
1303 …butes->fLeftType & kString) && attributes->fBias & kTowardsString && ((type1 | type2) & kString)) { in processOp()
1308 if (type2 == kInt || type2 == kScalar) { in processOp()
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DImplicitTest.java194 ASN1Implicit type2 = new ASN1Implicit(2, type1); in testConsecutiveStringTagging() local
213 assertTrue(Arrays.equals(array, (byte[]) type2 in testConsecutiveStringTagging()
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array))); in testConsecutiveStringTagging()
221 type2.decode(constructedEncoding); in testConsecutiveStringTagging()
/external/kernel-headers/original/asm-arm/
Dunistd.h435 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
436 type name(type1 arg1,type2 arg2) { \
452 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
453 type name(type1 arg1,type2 arg2,type3 arg3) { \
470 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4)\ argument
471 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
489 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument
490 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \
509 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \ argument
510 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6) { \
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java55 int type2 = right.type; in compute0() local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant) in compute0()
60 && type2 == TokenId.CharConstant) in compute0()
/external/libxml2/
Dxmlregexp.c2232 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument
2240 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes()
2241 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes()
2242 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes()
2243 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes()
2244 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes()
2245 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes()
2248 if (type1 == type2) return(1); in xmlFACompareAtomTypes()
2251 if (type1 > type2) { in xmlFACompareAtomTypes()
2253 type1 = type2; in xmlFACompareAtomTypes()
[all …]
/external/clang/test/SemaTemplate/
Dcanonical-expr-type.cpp47 typedef T __attribute__((ext_vector_type(M))) type2; typedef
51 void f0(type2);
Dinstantiate-declref.cpp58 typedef struct { T z; } type2; in foo() typedef
59 type2 t3 = { s1.x }; in foo()
/external/javassist/src/main/javassist/compiler/
DCodeGen.java1003 int type2 = exprType; in atArithBinExpr() local
1005 if (type2 == INT || type2 == SHORT in atArithBinExpr()
1006 || type2 == CHAR || type2 == BYTE) in atArithBinExpr()
1011 convertOprandTypes(type1, type2, expr); in atArithBinExpr()
1031 int type2 = exprType; in atStringConcatExpr() local
1033 boolean type2Is2 = is2word(type2, dim2); in atStringConcatExpr()
1035 = (type2 == CLASS && jvmJavaLangString.equals(className)); in atStringConcatExpr()
1038 convToString(type2, dim2); in atStringConcatExpr()
1052 convToString(type2, dim2); in atStringConcatExpr()
1289 static boolean rightIsStrong(int type1, int type2) { in rightIsStrong() argument
[all …]
DTypeChecker.java498 int type2 = exprType; in computeBinExprType() local
502 insertCast(expr, type1, type2); in computeBinExprType()
535 private void insertCast(BinExpr expr, int type1, int type2) in insertCast() argument
538 if (CodeGen.rightIsStrong(type1, type2)) in insertCast()
539 expr.setLeft(new CastExpr(type2, 0, expr.oprand1())); in insertCast()
/external/chromium/chrome/browser/sessions/
Dsession_restore_uitest.cc323 Browser::Type type1, type2; in TEST_F() local
325 ASSERT_TRUE(browser_proxy2->GetType(&type2)); in TEST_F()
330 EXPECT_EQ(type2, Browser::TYPE_POPUP); in TEST_F()
333 EXPECT_EQ(type2, Browser::TYPE_NORMAL); in TEST_F()
/external/bluetooth/glib/gio/
Dgcontenttype.h35 const char *type2);
Dgcontenttype.c108 const char *type2) in g_content_type_equals() argument
114 g_return_val_if_fail (type2 != NULL, FALSE); in g_content_type_equals()
116 if (g_ascii_strcasecmp (type1, type2) == 0) in g_content_type_equals()
121 progid2 = get_registry_classes_key (type2, NULL); in g_content_type_equals()
466 const char *type2) in g_content_type_equals() argument
471 g_return_val_if_fail (type2 != NULL, FALSE); in g_content_type_equals()
474 res = xdg_mime_mime_type_equal (type1, type2); in g_content_type_equals()
/external/clang/test/Sema/
Ddllimport-dllexport.c33 typedef int __declspec(dllimport) type2; // expected-warning{{'dllimport' attribute only applies to… typedef
/external/javassist/src/main/javassist/bytecode/analysis/
DMultiType.java188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) { in mergeMultiInterfaces() argument
190 Map map2 = getAllMultiInterfaces(type2); in mergeMultiInterfaces()
DExecutor.java284 Type type2 = frame.peek(); in execute() local
286 frame.push(type2); in execute()
291 frame.setStack(insert, type2); in execute()
297 Type type2 = frame.pop(); in execute() local
298 if (type1.getSize() == 2 || type2.getSize() == 2) in execute()
301 frame.push(type2); in execute()
/external/clang/test/SemaCXX/
Dqualified-id-lookup.cpp67 typedef struct N::f2 type2; typedef
/external/protobuf/vsprojects/
Dreadme.txt94 C4244 - Conversion from 'type1' to 'type2', possible loss of data.
96 clients of class 'type2'
98 C4305 - 'identifier' : truncation from 'type1' to 'type2'
/external/javassist/src/main/javassist/bytecode/
DConstPool.java1262 String type2 = Descriptor.rename(type, oldName, newName); in renameClass() local
1263 if (type != type2) in renameClass()
1264 typeDescriptor = cp.addUtf8Info(type2); in renameClass()
1269 String type2 = Descriptor.rename(type, map); in renameClass() local
1270 if (type != type2) in renameClass()
1271 typeDescriptor = cp.addUtf8Info(type2); in renameClass()
/external/clang/test/Index/
Dannotate-nested-name-specifier.cpp108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; typedef
/external/collada/src/dae/
DdaeElement.cpp497 type2 = formatToken(elt2->getTypeName()), in format() local
522 << setw(c1w) << left << "Type" << setw(c2w) << left << type1 << type2 << endl in format()
/external/llvm/cmake/modules/
DHandleLLVMOptions.cmake150 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
/external/valgrind/main/perf/
Dtinycc.c5446 static int is_compatible_types(CType *type1, CType *type2);
11182 CType *type1, *type2, tmp_type1, tmp_type2; in check_comparison_pointer_types() local
11189 type2 = &p2->type; in check_comparison_pointer_types()
11191 bt2 = type2->t & VT_BTYPE; in check_comparison_pointer_types()
11205 type2 = pointed_type(type2); in check_comparison_pointer_types()
11211 (type2->t & VT_BTYPE) == VT_VOID) in check_comparison_pointer_types()
11214 tmp_type2 = *type2; in check_comparison_pointer_types()
11645 static int is_compatible_func(CType *type1, CType *type2) in is_compatible_func() argument
11650 s2 = type2->ref; in is_compatible_func()
11679 static int is_compatible_types(CType *type1, CType *type2) in is_compatible_types() argument
[all …]
/external/qemu/target-arm/
Dneon_helper.c1589 #define DO_MULL(dest, x, y, type1, type2) do { \ argument
1592 dest = (type2)((type2)tmp_x * (type2)tmp_y); \

12