Home
last modified time | relevance | path

Searched refs:tval (Results 1 - 25 of 26) sorted by relevance

12

/third_party/libinput/src/
H A Dutil-input-event.h38 struct timeval tval = us2tv(time); in input_event_init() local
40 ev.input_event_sec = tval.tv_sec; in input_event_init()
41 ev.input_event_usec = tval.tv_usec; in input_event_init()
52 struct timeval tval; in input_event_time() local
54 tval.tv_sec = e->input_event_sec; in input_event_time()
55 tval.tv_usec = e->input_event_usec; in input_event_time()
57 return tv2us(&tval); in input_event_time()
64 struct timeval tval = us2tv(time); in input_event_set_time() local
66 e->input_event_sec = tval.tv_sec; in input_event_set_time()
67 e->input_event_usec = tval in input_event_set_time()
[all...]
/third_party/toybox/toys/pending/
H A Darping.c121 struct timeval tval; in send_packet() local
123 gettimeofday(&tval, NULL); in send_packet()
124 TT.sent_at = tval.tv_sec * 1000000ULL + tval.tv_usec; in send_packet()
164 struct timeval tval; in recv_from() local
166 gettimeofday(&tval, NULL); in recv_from()
167 delta = (tval.tv_sec * 1000000ULL + (tval.tv_usec)) - TT.sent_at; in recv_from()
H A Dip.c2667 unsigned long tval = strtoul(*argv, &ptr, 16); in parse_iptunnel_args() local
2669 if (tval > 255) error_exit("invalid tos value '%s'", *argv); in parse_iptunnel_args()
2676 } else ptnl->iph.tos = tval; in parse_iptunnel_args()
/third_party/libcoap/src/
H A Dcoap_encode.c79 uint64_t tval = val; in coap_encode_var_safe8() local
81 for (n = 0; tval && n < sizeof(val); ++n) in coap_encode_var_safe8()
82 tval >>= 8; in coap_encode_var_safe8()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/speculative/
H A D6-1.c23 int tval = BOGUSTID; in main() local
24 tid = (timer_t) & tval; in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_delete/speculative/
H A D5-1.c23 int tval = BOGUSTIMERID; in main() local
24 tid = (timer_t) & tval; in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/speculative/
H A D6-1.c24 int tval = BOGUSTID; in main() local
25 tid = (timer_t) & tval; in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/speculative/
H A D12-1.c23 int tval = BOGUSTID; in main() local
24 tid = (timer_t) & tval; in main()
/third_party/libsnd/src/
H A Dtest_conversions.c36 #define cmp_test(line, ival, tval, str) \
37 if (ival != tval) \
38 { printf (str, line, ival, tval) ; \
/third_party/ltp/testcases/kernel/syscalls/clock_gettime/
H A Dclock_gettime04.c62 struct timeval tval; in my_gettimeofday() local
67 if (gettimeofday(&tval, NULL) < 0) in my_gettimeofday()
74 *((struct timespec *)ts) = tst_timespec_from_us(tst_timeval_to_us(tval)); in my_gettimeofday()
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dtasn_fre.c125 ASN1_VALUE *tval; in ossl_asn1_template_free() local
127 tval = (ASN1_VALUE *)pval; in ossl_asn1_template_free()
128 pval = &tval; in ossl_asn1_template_free()
H A Dtasn_new.c212 ASN1_VALUE *tval; in asn1_template_new() local
215 tval = (ASN1_VALUE *)pval; in asn1_template_new()
216 pval = &tval; in asn1_template_new()
H A Dtasn_enc.c221 const ASN1_VALUE *tval; in asn1_template_ex_i2d() local
228 tval = (ASN1_VALUE *)pval; in asn1_template_ex_i2d()
229 pval = &tval; in asn1_template_ex_i2d()
H A Dtasn_dec.c576 ASN1_VALUE *tval; in asn1_template_noexp_d2i() local
590 tval = (ASN1_VALUE *)val; in asn1_template_noexp_d2i()
591 val = &tval; in asn1_template_noexp_d2i()
/third_party/openssl/crypto/asn1/
H A Dtasn_fre.c125 ASN1_VALUE *tval; in ossl_asn1_template_free() local
127 tval = (ASN1_VALUE *)pval; in ossl_asn1_template_free()
128 pval = &tval; in ossl_asn1_template_free()
H A Dtasn_new.c212 ASN1_VALUE *tval; in asn1_template_new() local
215 tval = (ASN1_VALUE *)pval; in asn1_template_new()
216 pval = &tval; in asn1_template_new()
H A Dtasn_enc.c221 const ASN1_VALUE *tval; in asn1_template_ex_i2d() local
228 tval = (ASN1_VALUE *)pval; in asn1_template_ex_i2d()
229 pval = &tval; in asn1_template_ex_i2d()
H A Dtasn_dec.c576 ASN1_VALUE *tval; in asn1_template_noexp_d2i() local
590 tval = (ASN1_VALUE *)val; in asn1_template_noexp_d2i()
591 val = &tval; in asn1_template_noexp_d2i()
/third_party/ffmpeg/libavformat/
H A Dlibamqp.c71 struct timeval tval = { 0 }; in amqp_proto_open() local
148 tval.tv_sec = s->connection_timeout / 1000000; in amqp_proto_open()
149 tval.tv_usec = s->connection_timeout % 1000000; in amqp_proto_open()
150 ret = amqp_socket_open_noblock(s->socket, hostname, port, &tval); in amqp_proto_open()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_ncons.c129 CONF_VALUE tval, *val;
141 tval.name = val->name + 10;
144 tval.name = val->name + 9;
149 tval.value = val->value;
153 if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
/third_party/openssl/crypto/x509/
H A Dv3_ncons.c129 CONF_VALUE tval, *val;
141 tval.name = val->name + 10;
144 tval.name = val->name + 9;
149 tval.value = val->value;
153 if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
/third_party/benchmark/test/
H A Doutput_test.h136 T tval = static_cast<T>(dval); in GetCounterAs() local
137 return tval; in GetCounterAs()
/third_party/skia/samplecode/
H A DSamplePath.cpp39 SkScalar tval[] = { 0.33333334f, 0.99999994f }; in test_cubic() local
41 SkChopCubicAt(src, dst, tval, 2); in test_cubic()
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h955 F(Select, const Value& cond, const Value& fval, const Value& tval, \
2932 Value tval = Peek(2, 0, fval.type); in DECODE() local
2933 ValueType type = tval.type == kWasmBottom ? fval.type : tval.type; in DECODE()
2940 CALL_INTERFACE_IF_OK_AND_REACHABLE(Select, cond, fval, tval, &result); in DECODE()
2953 Value tval = Peek(2, 0, imm.type); in DECODE() local
2955 CALL_INTERFACE_IF_OK_AND_REACHABLE(Select, cond, fval, tval, &result); in DECODE()
H A Dgraph-builder-interface.cc468 const Value& tval, Value* result) { in Select()
470 builder_->Select(cond.node, tval.node, fval.node, result->type); in Select()

Completed in 27 milliseconds

12