/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-more-actions.h | 207 #define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) \ 208 , typename p0##_type, typename p1##_type, typename p2##_type 209 #define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) \ 210 , typename p0##_type, typename p1##_type, typename p2##_type, \ 212 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) \ 213 , typename p0##_type, typename p1##_type, typename p2##_type, \ 215 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) \ 216 , typename p0##_type, typename p1##_type, typename p2##_type, \ 218 #define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ 220 , typename p0##_type, typename p1##_type, typename p2##_typ [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | tsxEmit2.js | 9 var p1: any, p2: any, p3: any; 10 var spreads1 = <div {...p1}>{p2}</div>; 11 var spreads2 = <div {...p1}>{p2}</div>; 12 var spreads3 = <div x={p3} {...p1}>{p2}</div>; 13 var spreads4 = <div {...p1} x={p3} >{p2}</div>; 14 var spreads5 = <div x={p2} {...p1} y={p3}>{p2}</div>; 18 var p1, p2, p3;
19 var spreads1 = <div {...p1}>{p2}</div>;
20 var spreads2 = <div {...p1}>{p2}</di [all...] |
H A D | tsxReactEmit2.js | 10 var p1: any, p2: any, p3: any; 11 var spreads1 = <div {...p1}>{p2}</div>; 12 var spreads2 = <div {...p1}>{p2}</div>; 13 var spreads3 = <div x={p3} {...p1}>{p2}</div>; 14 var spreads4 = <div {...p1} x={p3} >{p2}</div>; 15 var spreads5 = <div x={p2} {...p1} y={p3}>{p2}</div>; 30 var p1, p2, p3;
31 var spreads1 = React.createElement("div", __assign({}, p1), p2);
32 var spreads2 = React.createElement("div", __assign({}, p1), p2);
[all...] |
H A D | mergedDeclarations1.js | 11 export function equals(p1: Point, p2: Point) { 12 return p1.x == p2.x && p1.y == p2.y; 16 var p2 = point.origin; variable 17 var b = point.equals(p1, p2);
25 function equals(p1, p2) {
26 return p1.x == p2.x && p1.y == p2.y;
31 var p2 = point.origin;
32 var b = point.equals(p1, p2);
[all...] |
H A D | excessPropertyCheckWithMultipleDiscriminants.js | 36 type DisjointDiscriminants = { p1: 'left'; p2: true; p3: number } | { p1: 'right'; p2: false; p4: string } | { p1: 'left'; p2: boolean }; 41 p2: false, 49 p2: true, 57 p2: false, 74 p2: false,
81 p2: true,
88 p2: false,
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | ctrl_params_translate.c | 84 * the passed |p2| in whatever way necessary, 134 * the passed |p1| and |p2| in whatever way 181 * used. In this case, the (string) value is always passed as |p2|. 191 void *p2; member 192 /* a size, for passing back the |p2| size where applicable */ 204 * needs to manipulate |p2| but wants to remember original. 221 * value of |p1| or |p2| (ctrls are really bi-directional, but are 347 * data between p1+p2 (SET) or return value+p2 (GET) as long as the values 356 * PRE_CTRL_TO_PARAMS, SET | GET - |p1| and |p2| ar 1142 char *p2 = NULL; fix_ec_paramgen_curve_nid() local 2635 evp_pkey_ctx_ctrl_to_param(EVP_PKEY_CTX *pctx, int keytype, int optype, int cmd, int p1, void *p2) evp_pkey_ctx_ctrl_to_param() argument [all...] |
/third_party/python/Python/ |
H A D | pystrcmp.c | 9 const unsigned char *p1, *p2; in PyOS_mystrnicmp() local 13 p2 = (const unsigned char *)s2; in PyOS_mystrnicmp() 14 for (; (--size > 0) && *p1 && *p2 && (tolower(*p1) == tolower(*p2)); in PyOS_mystrnicmp() 15 p1++, p2++) { in PyOS_mystrnicmp() 18 return tolower(*p1) - tolower(*p2); in PyOS_mystrnicmp() 25 const unsigned char *p2 = (const unsigned char *)s2; in PyOS_mystricmp() local 26 for (; *p1 && *p2 && (tolower(*p1) == tolower(*p2)); p1++, p2 in PyOS_mystricmp() [all...] |
/third_party/openssl/crypto/evp/ |
H A D | ctrl_params_translate.c | 84 * the passed |p2| in whatever way necessary, 134 * the passed |p1| and |p2| in whatever way 181 * used. In this case, the (string) value is always passed as |p2|. 191 void *p2; member 192 /* a size, for passing back the |p2| size where applicable */ 204 * needs to manipulate |p2| but wants to remember original. 221 * value of |p1| or |p2| (ctrls are really bi-directional, but are 347 * data between p1+p2 (SET) or return value+p2 (GET) as long as the values 356 * PRE_CTRL_TO_PARAMS, SET | GET - |p1| and |p2| ar 1139 char *p2 = NULL; fix_ec_paramgen_curve_nid() local 2626 evp_pkey_ctx_ctrl_to_param(EVP_PKEY_CTX *pctx, int keytype, int optype, int cmd, int p1, void *p2) evp_pkey_ctx_ctrl_to_param() argument [all...] |
/third_party/skia/samplecode/ |
H A D | SamplePathOverstroke.cpp | 63 SkPath quadPath(SkPoint p1, SkPoint p2) { in quadPath() argument 64 SkASSERT(p1.y() == p2.y()); in quadPath() 68 path.lineTo(p2); in quadPath() 70 SkPoint p3 = SkPoint::Make((p1.x() + p2.x()) / 2.0f, p1.y() * 0.7f); in quadPath() 77 SkPath cubicPath(SkPoint p1, SkPoint p2) { in cubicPath() argument 78 SkASSERT(p1.y() == p2.y()); in cubicPath() 83 SkPoint p3 = SkPoint::Make((p1.x() + p2.x()) / 3.0f, p1.y() * 0.7f); in cubicPath() 84 SkPoint p4 = SkPoint::Make(2.0f*(p1.x() + p2.x()) / 3.0f, p1.y() * 1.5f); in cubicPath() 86 path.cubicTo(p3, p4, p2); in cubicPath() 91 SkPath linSemicirclePath(SkPoint p1, SkPoint p2) { in linSemicirclePath() argument 127 SkPoint p2 = SkPoint::Make(80, 50); global() variable [all...] |
/third_party/json/tests/src/ |
H A D | unit-reference_access.cpp | 41 const auto& p2 = value.get_ref<const test_type&>(); variable 42 CHECK(&p2 == value.get_ptr<const test_type*>()); 43 CHECK(p2 == value.get<test_type>()); 70 const auto& p2 = value.get_ref<const test_type&>(); variable 71 CHECK(&p2 == value.get_ptr<const test_type*>()); 72 CHECK(p2 == value.get<test_type>()); 85 const auto& p2 = value.get_ref<const test_type&>(); variable 86 CHECK(&p2 == value.get_ptr<const test_type*>()); 87 CHECK(p2 == value.get<test_type>()); 115 const auto& p2 variable 145 const auto& p2 = value.get_ref<const test_type&>(); global() variable 175 const auto& p2 = value.get_ref<const test_type&>(); global() variable 205 const auto& p2 = value.get_ref<const test_type&>(); global() variable 234 const auto& p2 = value.get_ref<const test_type&>(); global() variable [all...] |
H A D | unit-pointer_access.cpp | 26 const test_type* p2 = value.get_ptr<const test_type*>(); variable 27 CHECK(p2 == value.get_ptr<const test_type*>()); 28 CHECK(*p2 == value.get<test_type>()); 55 const test_type* p2 = value.get_ptr<const test_type*>(); variable 56 CHECK(p2 == value.get_ptr<const test_type*>()); 57 CHECK(*p2 == value.get<test_type>()); 84 const test_type* p2 = value.get_ptr<const test_type*>(); variable 85 CHECK(p2 == value.get_ptr<const test_type*>()); 86 CHECK(*p2 == value.get<test_type>()); 113 const test_type* p2 variable 142 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 171 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 200 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 229 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 258 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 287 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 316 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 345 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 374 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 403 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 432 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable 461 const test_type* p2 = value.get_ptr<const test_type*>(); global() variable [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | h263dsp.c | 40 int p2 = src[y * stride + 0]; in h263_h_loop_filter_c() local 42 int d = (p0 - p3 + 4 * (p2 - p1)) / 8; in h263_h_loop_filter_c() 56 p2 -= d1; in h263_h_loop_filter_c() 59 if (p2 & 256) in h263_h_loop_filter_c() 60 p2 = ~(p2 >> 31); in h263_h_loop_filter_c() 63 src[y * stride + 0] = p2; in h263_h_loop_filter_c() 83 int p2 = src[x + 0 * stride]; in h263_v_loop_filter_c() local 85 int d = (p0 - p3 + 4 * (p2 - p1)) / 8; in h263_v_loop_filter_c() 99 p2 in h263_v_loop_filter_c() [all...] |
H A D | takdsp.c | 26 static void decorrelate_ls(int32_t *p1, int32_t *p2, int length) in decorrelate_ls() argument 32 uint32_t b = p2[i]; in decorrelate_ls() 33 p2[i] = a + b; in decorrelate_ls() 37 static void decorrelate_sr(int32_t *p1, int32_t *p2, int length) in decorrelate_sr() argument 43 uint32_t b = p2[i]; in decorrelate_sr() 48 static void decorrelate_sm(int32_t *p1, int32_t *p2, int length) in decorrelate_sm() argument 54 int32_t b = p2[i]; in decorrelate_sm() 57 p2[i] = a + b; in decorrelate_sm() 61 static void decorrelate_sf(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor) in decorrelate_sf() argument 67 int32_t b = p2[ in decorrelate_sf() [all...] |
H A D | msrledec.c | 133 int p1, p2, line=avctx->height - 1, pos=0, i; in msrle_decode_8_16_24_32() local 144 p2 = bytestream2_get_byte(gb); in msrle_decode_8_16_24_32() 145 if(p2 == 0) { //End-of-line in msrle_decode_8_16_24_32() 160 } else if(p2 == 1) { //End-of-picture in msrle_decode_8_16_24_32() 162 } else if(p2 == 2) { //Skip in msrle_decode_8_16_24_32() 164 p2 = bytestream2_get_byte(gb); in msrle_decode_8_16_24_32() 165 line -= p2; in msrle_decode_8_16_24_32() 176 if (output + p2 * (depth >> 3) > output_end) { in msrle_decode_8_16_24_32() 179 } else if (bytestream2_get_bytes_left(gb) < p2 * (depth >> 3)) { in msrle_decode_8_16_24_32() 185 bytestream2_get_bufferu(gb, output, p2 * (dept in msrle_decode_8_16_24_32() [all...] |
/third_party/unity/test/tests/ |
H A D | test_unity_integers.c | 681 int *p0, *p1, *p2; in testEqualPointers() local 687 p2 = &v1; in testEqualPointers() 691 TEST_ASSERT_EQUAL_PTR(p2, p1); in testEqualPointers() 1769 UNITY_INT *p0, *p1, *p2; in testGreaterOrEqual() local 1776 p2 = &v2; in testGreaterOrEqual() 1784 TEST_ASSERT_GREATER_OR_EQUAL(v0, *p2); in testGreaterOrEqual() 1785 TEST_ASSERT_GREATER_OR_EQUAL(*p0, *p2); in testGreaterOrEqual() 1798 UNITY_INT *p0, *p1, *p2; in testGreaterOrEqualINT() local 1805 p2 = &v2; in testGreaterOrEqualINT() 1813 TEST_ASSERT_GREATER_OR_EQUAL_INT(v0, *p2); in testGreaterOrEqualINT() 1827 UNITY_INT8 *p0, *p1, *p2; testGreaterOrEqualINT8() local 1856 char *p0, *p1, *p2; testGreaterOrEqualCHAR() local 1885 UNITY_INT16 *p0, *p1, *p2; testGreaterOrEqualINT16() local 1914 UNITY_INT32 *p0, *p1, *p2; testGreaterOrEqualINT32() local 1943 UNITY_UINT *p0, *p1, *p2; testGreaterOrEqualUINT() local 1972 UNITY_UINT8 *p0, *p1, *p2; testGreaterOrEqualUINT8() local 2001 UNITY_UINT16 *p0, *p1, *p2; testGreaterOrEqualUINT16() local 2030 UNITY_UINT32 *p0, *p1, *p2; testGreaterOrEqualUINT32() local 2059 UNITY_UINT8 *p0, *p1, *p2; testGreaterOrEqualHEX8() local 2088 UNITY_UINT16 *p0, *p1, *p2; testGreaterOrEqualHEX16() local 2117 UNITY_UINT32 *p0, *p1, *p2; testGreaterOrEqualHEX32() local 2447 UNITY_INT *p0, *p1, *p2; testLessOrEqual() local 2476 UNITY_INT *p0, *p1, *p2; testLessOrEqualINT() local 2505 UNITY_INT8 *p0, *p1, *p2; testLessOrEqualINT8() local 2534 char *p0, *p1, *p2; testLessOrEqualCHAR() local 2563 UNITY_INT16 *p0, *p1, *p2; testLessOrEqualINT16() local 2592 UNITY_INT32 *p0, *p1, *p2; testLessOrEqualINT32() local 2621 UNITY_UINT *p0, *p1, *p2; testLessOrEqualUINT() local 2650 UNITY_UINT8 *p0, *p1, *p2; testLessOrEqualUINT8() local 2679 UNITY_UINT16 *p0, *p1, *p2; testLessOrEqualUINT16() local 2708 UNITY_UINT32 *p0, *p1, *p2; testLessOrEqualUINT32() local 2737 UNITY_UINT8 *p0, *p1, *p2; testLessOrEqualHEX8() local 2766 UNITY_UINT16 *p0, *p1, *p2; testLessOrEqualHEX16() local 2795 UNITY_UINT32 *p0, *p1, *p2; testLessOrEqualHEX32() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/dsa/ |
H A D | dsa_pmeth.c | 123 static int pkey_dsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_dsa_ctrl() argument 141 if (EVP_MD_get_type((const EVP_MD *)p2) != NID_sha1 && in pkey_dsa_ctrl() 142 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha224 && in pkey_dsa_ctrl() 143 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha256) { in pkey_dsa_ctrl() 147 dctx->pmd = p2; in pkey_dsa_ctrl() 151 if (EVP_MD_get_type((const EVP_MD *)p2) != NID_sha1 && in pkey_dsa_ctrl() 152 EVP_MD_get_type((const EVP_MD *)p2) != NID_dsa && in pkey_dsa_ctrl() 153 EVP_MD_get_type((const EVP_MD *)p2) != NID_dsaWithSHA && in pkey_dsa_ctrl() 154 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha224 && in pkey_dsa_ctrl() 155 EVP_MD_get_type((const EVP_MD *)p2) ! in pkey_dsa_ctrl() [all...] |
/third_party/openssl/crypto/dsa/ |
H A D | dsa_pmeth.c | 123 static int pkey_dsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) in pkey_dsa_ctrl() argument 141 if (EVP_MD_get_type((const EVP_MD *)p2) != NID_sha1 && in pkey_dsa_ctrl() 142 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha224 && in pkey_dsa_ctrl() 143 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha256) { in pkey_dsa_ctrl() 147 dctx->pmd = p2; in pkey_dsa_ctrl() 151 if (EVP_MD_get_type((const EVP_MD *)p2) != NID_sha1 && in pkey_dsa_ctrl() 152 EVP_MD_get_type((const EVP_MD *)p2) != NID_dsa && in pkey_dsa_ctrl() 153 EVP_MD_get_type((const EVP_MD *)p2) != NID_dsaWithSHA && in pkey_dsa_ctrl() 154 EVP_MD_get_type((const EVP_MD *)p2) != NID_sha224 && in pkey_dsa_ctrl() 155 EVP_MD_get_type((const EVP_MD *)p2) ! in pkey_dsa_ctrl() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | PropertiesTest.java | 53 DecimalFormatProperties p2 = new DecimalFormatProperties(); in testBasicEquals() 54 assertEquals(p1, p2); in testBasicEquals() 57 assertNotEquals(p1, p2); in testBasicEquals() 58 p2.setPositivePrefix("xyz"); in testBasicEquals() 59 assertNotEquals(p1, p2); in testBasicEquals() 61 assertEquals(p1, p2); in testBasicEquals() 68 DecimalFormatProperties p2 = new DecimalFormatProperties(); in testFieldCoverage() 132 setter.invoke(p2, val0); in testFieldCoverage() 133 assertEquals(p1, p2); in testFieldCoverage() 134 assertEquals(p1.hashCode(), p2 in testFieldCoverage() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | PropertiesTest.java | 50 DecimalFormatProperties p2 = new DecimalFormatProperties(); in testBasicEquals() 51 assertEquals(p1, p2); in testBasicEquals() 54 assertNotEquals(p1, p2); in testBasicEquals() 55 p2.setPositivePrefix("xyz"); in testBasicEquals() 56 assertNotEquals(p1, p2); in testBasicEquals() 58 assertEquals(p1, p2); in testBasicEquals() 65 DecimalFormatProperties p2 = new DecimalFormatProperties(); in testFieldCoverage() 129 setter.invoke(p2, val0); in testFieldCoverage() 130 assertEquals(p1, p2); in testFieldCoverage() 131 assertEquals(p1.hashCode(), p2 in testFieldCoverage() [all...] |
/third_party/optimized-routines/string/aarch64/ |
H A D | strcmp-sve.S | 34 cmpeq p2.b, p1/z, z0.b, z1.b /* compare strings */ 36 nands p2.b, p1/z, p2.b, p3.b /* ~(eq & ~zero) -> ne | zero */ 40 1: brkb p2.b, p1/z, p2.b /* find first such */ 41 lasta w0, p2, z0.b /* extract each char */ 42 lasta w1, p2, z1.b 50 cmpeq p2.b, p0/z, z0.b, z1.b /* compare strings, as above */ 52 nands p2.b, p0/z, p2 [all...] |
H A D | strncmp-sve.S | 39 cmpne p2.b, p0/z, z0.b, 0 /* search for ~zero */ 40 nands p2.b, p0/z, p1.b, p2.b /* ~(eq & ~zero) -> ne | zero */ 44 1: brkb p2.b, p0/z, p2.b /* find first such */ 45 lasta w0, p2, z0.b /* extract each char */ 46 lasta w1, p2, z1.b 52 2: cmpeq p2.b, p1/z, z0.b, z1.b /* compare strings, as above */ 54 nands p2.b, p1/z, p2 [all...] |
/third_party/skia/src/gpu/tessellate/ |
H A D | PatchWriter.cpp | 28 void PatchWriter::chopAndWriteQuads(float2 p0, float2 p1, float2 p2, int numPatches) { in chopAndWriteQuads() argument 36 float4 bc = mix(p1.xyxy(), p2.xyxy(), T); in chopAndWriteQuads() 38 // p1 & p2 of the cubic representation of the middle quad. in chopAndWriteQuads() 54 float2 bc = (p1 + p2) * .5f; in chopAndWriteQuads() 59 TrianglePatch(*this) << p0 << abc << p2; in chopAndWriteQuads() 61 CubicPatch(*this) << QuadToCubic{abc, bc, p2}; // Write the 2nd quad. in chopAndWriteQuads() 64 CubicPatch(*this) << QuadToCubic{p0, p1, p2}; // Write the single quad. in chopAndWriteQuads() 67 *this << innerTriangulator.pushVertex(to_skpoint(p2)); in chopAndWriteQuads() 72 void PatchWriter::chopAndWriteConics(float2 p0, float2 p1, float2 p2, float w, int numPatches) { in chopAndWriteConics() argument 79 float4 h2 = float4(p2, in chopAndWriteConics() 110 chopAndWriteCubics(float2 p0, float2 p1, float2 p2, float2 p3, int numPatches) chopAndWriteCubics() argument [all...] |
/third_party/alsa-lib/src/alisp/ |
H A D | alisp.c | 1112 struct alisp_object *p1 = car(args), *p2; in F_car() local 1117 p2 = car(p1); in F_car() 1119 return p2; in F_car() 1127 struct alisp_object *p1 = car(args), *p2; in F_cdr() local 1132 p2 = cdr(p1); in F_cdr() 1134 return p2; in F_cdr() 1362 struct alisp_object * p1, * p2, * p3; in F_mod() local 1365 p2 = eval(instance, car(cdr(args))); in F_mod() 1371 alisp_compare_type(p2, ALISP_OBJ_INTEGER)) { in F_mod() 1372 if (p2 in F_mod() 1409 struct alisp_object * p1, * p2; F_lt() local 1448 struct alisp_object * p1, * p2; F_gt() local 1487 struct alisp_object * p1, * p2; F_le() local 1526 struct alisp_object * p1, * p2; F_ge() local 1565 struct alisp_object * p1, * p2; F_numeq() local 1618 struct alisp_object * p1, * p2; F_exfun() local 1815 eq(struct alisp_object * p1, struct alisp_object * p2) eq() argument 1820 equal(struct alisp_object * p1, struct alisp_object * p2) equal() argument 1852 struct alisp_object * p1, * p2; F_eq() local 1875 struct alisp_object * p1, * p2; F_equal() local 1976 struct alisp_object * p = args, * p1, * p2, * p3; F_cond() local 2009 struct alisp_object * p1, * p2, * p3; F_if() local 2034 struct alisp_object * p1, * p2; F_when() local 2055 struct alisp_object * p1, * p2; F_unless() local 2075 struct alisp_object * p1, * p2, * p3; F_while() local 2170 * p2 = eval(instance, car(cdr(args))); F_set() local 2209 struct alisp_object * p = args, * p1, * p2 = NULL, *n; F_setq() local 2263 * p2 = car(cdr(args)), F_defun() local 2299 struct alisp_object * p1, * p2, * p3, * p4; eval_func() local 2753 struct alisp_object * p1, * p2, * n; F_assoc() local 2783 struct alisp_object * p1, *p2, * n; F_rassoc() local 2813 struct alisp_object * p1, * p2, * n; F_assq() local 2843 struct alisp_object * p1, * p2, * n; F_nth() local 2880 struct alisp_object * p1, * p2, * n; F_rassq() local 3041 compar(const void *p1, const void *p2) compar() argument 3047 eval_cons1(struct alisp_instance *instance, struct alisp_object * p1, struct alisp_object * p2) eval_cons1() argument 3102 struct alisp_object * p1 = car(p), * p2; eval_cons() local 3477 struct alisp_object * p2; alsa_lisp_seq_pointer() local [all...] |
/third_party/curl/src/ |
H A D | tool_util.c | 140 int struplocompare(const char *p1, const char *p2) in struplocompare() argument 143 return p2? -1: 0; in struplocompare() 144 if(!p2) in struplocompare() 147 return strcasecmp(p1, p2); in struplocompare() 149 return strcmpi(p1, p2); in struplocompare() 151 return stricmp(p1, p2); in struplocompare() 153 return strcmp(p1, p2); in struplocompare() 158 int struplocompare4sort(const void *p1, const void *p2) in struplocompare4sort() argument 160 return struplocompare(* (char * const *) p1, * (char * const *) p2); in struplocompare4sort()
|
/third_party/cups-filters/filter/ |
H A D | sys5ippprinter.c | 840 char *p1, *p2; in get_option_in_str() local 849 p2 = p1 + strlen(option); in get_option_in_str() 850 if (*p2 == ' ' || *p2 == '\t' || *p2 == '\0') in get_option_in_str() 852 if (*p2 != '=') in get_option_in_str() 856 p1 = p2 + 1; in get_option_in_str() 857 for (p2 = p1; *p2 != ' ' && *p2 ! in get_option_in_str() 878 char *p1, *p2; set_option_in_str() local [all...] |