/third_party/libinput/src/ |
H A D | util-input-event.h | 38 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 D | arping.c | 121 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 D | ip.c | 2667 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 D | coap_encode.c | 79 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 D | 6-1.c | 23 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 D | 5-1.c | 23 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 D | 6-1.c | 24 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 D | 12-1.c | 23 int tval = BOGUSTID; in main() local 24 tid = (timer_t) & tval; in main()
|
/third_party/libsnd/src/ |
H A D | test_conversions.c | 36 #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 D | clock_gettime04.c | 62 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 D | tasn_fre.c | 125 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 D | tasn_new.c | 212 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 D | tasn_enc.c | 221 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 D | tasn_dec.c | 576 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 D | tasn_fre.c | 125 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 D | tasn_new.c | 212 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 D | tasn_enc.c | 221 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 D | tasn_dec.c | 576 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 D | libamqp.c | 71 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 D | v3_ncons.c | 129 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 D | v3_ncons.c | 129 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 D | output_test.h | 136 T tval = static_cast<T>(dval); in GetCounterAs() local 137 return tval; in GetCounterAs()
|
/third_party/skia/samplecode/ |
H A D | SamplePath.cpp | 39 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 D | function-body-decoder-impl.h | 955 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 D | graph-builder-interface.cc | 468 const Value& tval, Value* result) { in Select() 470 builder_->Select(cond.node, tval.node, fval.node, result->type); in Select()
|