Home
last modified time | relevance | path

Searched refs:presult (Results 1 - 11 of 11) sorted by relevance

/third_party/curl/lib/
H A Dsocks.c292 CURLproxycode presult; in do_SOCKS4() local
456 presult = socks_state_send(cf, sx, data, CURLPX_SEND_CONNECT, in do_SOCKS4()
458 if(CURLPX_OK != presult) in do_SOCKS4()
459 return presult; in do_SOCKS4()
472 presult = socks_state_recv(cf, sx, data, CURLPX_RECV_CONNECT, in do_SOCKS4()
474 if(CURLPX_OK != presult) in do_SOCKS4()
475 return presult; in do_SOCKS4()
584 CURLproxycode presult; in do_SOCKS5() local
633 presult = socks_state_send(cf, sx, data, CURLPX_SEND_CONNECT, in do_SOCKS5()
635 if(CURLPX_OK != presult) in do_SOCKS5()
[all...]
/third_party/gn/src/base/numerics/
H A Dchecked_math_impl.h70 Promotion presult = {}; in Do() local
73 presult = static_cast<Promotion>(x) + static_cast<Promotion>(y); in Do()
76 static_cast<Promotion>(y), &presult); in Do()
78 *result = static_cast<V>(presult); in Do()
79 return is_valid && IsValueInRangeForNumericType<V>(presult); in Do()
130 Promotion presult = {}; in Do() local
133 presult = static_cast<Promotion>(x) - static_cast<Promotion>(y); in Do()
136 static_cast<Promotion>(y), &presult); in Do()
138 *result = static_cast<V>(presult); in Do()
139 return is_valid && IsValueInRangeForNumericType<V>(presult); in Do()
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dchecked_math_impl.h79 Promotion presult = {}; in Do() local
83 presult = static_cast<Promotion>(x) + static_cast<Promotion>(y); in Do()
88 CheckedAddImpl(static_cast<Promotion>(x), static_cast<Promotion>(y), &presult); in Do()
90 if (!is_valid || !IsValueInRangeForNumericType<V>(presult)) in Do()
92 *result = static_cast<V>(presult); in Do()
148 Promotion presult = {}; in Do() local
152 presult = static_cast<Promotion>(x) - static_cast<Promotion>(y); in Do()
157 CheckedSubImpl(static_cast<Promotion>(x), static_cast<Promotion>(y), &presult); in Do()
159 if (!is_valid || !IsValueInRangeForNumericType<V>(presult)) in Do()
161 *result = static_cast<V>(presult); in Do()
215 Promotion presult = {}; Do() local
277 const Promotion presult = Promotion(x) / Promotion(y); Do() local
313 const Promotion presult = static_cast<Promotion>(x) % static_cast<Promotion>(y); Do() local
[all...]
H A Dsafe_math_arm_impl.h40 Promotion presult; in Do()
42 presult = static_cast<Promotion>(x) * static_cast<Promotion>(y); in Do()
43 if (!IsValueInRangeForNumericType<V>(presult)) in Do()
45 *result = static_cast<V>(presult); in Do()
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dquery9.c210 union pipe_query_result presult; in NineQuery9_GetData() local
245 wait_query_result, &presult); in NineQuery9_GetData()
254 nresult.b = presult.b; in NineQuery9_GetData()
257 nresult.dw = presult.u64; in NineQuery9_GetData()
260 nresult.u64 = presult.u64; in NineQuery9_GetData()
263 nresult.b = presult.timestamp_disjoint.disjoint; in NineQuery9_GetData()
278 presult.pipeline_statistics.c_invocations; in NineQuery9_GetData()
280 presult.pipeline_statistics.c_primitives; in NineQuery9_GetData()
/third_party/openssl/test/
H A Ddrbgtest.c418 drbg_fork_result *presult = &result[2]; in test_rand_reseed_on_fork() local
424 presult[0].pindex = presult[1].pindex = i; in test_rand_reseed_on_fork()
426 sprintf(presult[0].name, "child %d", i); in test_rand_reseed_on_fork()
427 strcpy(presult[1].name, presult[0].name); in test_rand_reseed_on_fork()
433 presult))) in test_rand_reseed_on_fork()
436 presult += 2; in test_rand_reseed_on_fork()
/third_party/toybox/toys/pending/
H A Ddhcp.c945 static uint32_t get_option_serverid (uint8_t *opt, dhcpc_result_t *presult) in get_option_serverid() argument
954 presult->serverid.s_addr = state->serverid.s_addr; in get_option_serverid()
955 presult->serverid.s_addr = ntohl(presult->serverid.s_addr); in get_option_serverid()
970 static uint8_t get_option_lease(uint8_t *opt, dhcpc_result_t *presult) in get_option_lease() argument
979 presult->lease_time = var; in get_option_lease()
1056 static uint8_t dhcpc_parseoptions(dhcpc_result_t *presult, uint8_t *optptr) in dhcpc_parseoptions() argument
1192 if ((overloaded == 1) || (overloaded == 3)) dhcpc_parseoptions(presult, optptr); in dhcpc_parseoptions()
1193 if ((overloaded == 2) || (overloaded == 3)) dhcpc_parseoptions(presult, optptr); in dhcpc_parseoptions()
1198 static uint8_t dhcpc_parsemsg(dhcpc_result_t *presult) in dhcpc_parsemsg() argument
[all...]
/third_party/python/Objects/
H A Dgenobject.c151 gen_send_ex2(PyGenObject *gen, PyObject *arg, PyObject **presult, in gen_send_ex2() argument
158 *presult = NULL; in gen_send_ex2()
195 *presult = Py_None; in gen_send_ex2()
196 Py_INCREF(*presult); in gen_send_ex2()
236 *presult = result; in gen_send_ex2()
273 *presult = result; in gen_send_ex2()
/third_party/python/Modules/_ctypes/
H A D_ctypes_test.c317 EXPORT(void) _testfunc_v(int a, int b, int *presult) in _testfunc_v() argument
319 *presult = a + b; in _testfunc_v()
/third_party/python/Lib/test/test_asyncio/
H A Dtest_locks.py527 presult = False
530 return presult
552 presult = True
/third_party/skia/third_party/externals/expat/expat/tests/
H A Druntests.c3797 get_feature(enum XML_FeatureEnum feature_id, long *presult) { in get_feature() argument
3804 *presult = feature->value; in get_feature()

Completed in 28 milliseconds