Home
last modified time | relevance | path

Searched refs:int64_val (Results 1 – 15 of 15) sorted by relevance

/third_party/grpc/third_party/upb/upb/
Djson_decode.c679 val.int64_val = dbl; /* must be guarded, overflow here is UB */ in jsondec_int()
680 if (val.int64_val != dbl) { in jsondec_int()
682 val.int64_val); in jsondec_int()
688 val.int64_val = jsondec_strtoint64(d, str); in jsondec_int()
696 if (val.int64_val > INT32_MAX || val.int64_val < INT32_MIN) { in jsondec_int()
699 val.int32_val = (int32_t)val.int64_val; in jsondec_int()
1054 seconds.int64_val = jsondec_unixtime(year, mon, day, hour, min, sec); in jsondec_timestamp()
1074 seconds.int64_val += (neg ? ofs : -ofs); in jsondec_timestamp()
1084 if (seconds.int64_val < -62135596800) { in jsondec_timestamp()
1105 ptr = jsondec_buftoint64(d, ptr, end, &seconds.int64_val); in jsondec_duration()
[all …]
Djson_encode.c112 int64_t seconds = upb_msg_get(msg, seconds_f).int64_val; in jsonenc_timestamp()
153 int64_t seconds = upb_msg_get(msg, seconds_f).int64_val; in jsonenc_duration()
545 jsonenc_printf(e, "\"%" PRId64 "\"", val.int64_val); in jsonenc_scalar()
579 jsonenc_printf(e, "%" PRId64, val.int64_val); in jsonenc_mapkey()
Dreflection.h16 int64_t int64_val; member
Dreflection.c124 val.int64_val = upb_fielddef_defaultint64(f); in upb_msg_get()
Dtext_encode.c146 txtenc_printf(e, "%" PRId64, val.int64_val); in txtenc_field()
/third_party/protobuf/php/ext/google/protobuf/
Dconvert.c361 return Convert_PhpToInt64(php_val, &upb_val->int64_val); in Convert_PhpToUpb()
424 ZVAL_LONG(php_val, upb_val.int64_val); in Convert_UpbToPhp()
428 int size = sprintf(buf, "%lld", upb_val.int64_val); in Convert_UpbToPhp()
Dphp-upb.c327 int64_t int64_val; member
431 val->int64_val = (n >> 1) ^ -(int64_t)(n & 1); in decode_munge()
5689 val.int64_val = upb_fielddef_defaultint64(f); in upb_msg_get()
6652 val.int64_val = dbl; /* must be guarded, overflow here is UB */ in jsondec_int()
6653 if (val.int64_val != dbl) { in jsondec_int()
6655 val.int64_val); in jsondec_int()
6661 val.int64_val = jsondec_strtoint64(d, str); in jsondec_int()
6669 if (val.int64_val > INT32_MAX || val.int64_val < INT32_MIN) { in jsondec_int()
6672 val.int32_val = (int32_t)val.int64_val; in jsondec_int()
7022 seconds.int64_val = jsondec_unixtime(year, mon, day, hour, min, sec); in jsondec_timestamp()
[all …]
Dphp-upb.h3646 int64_t int64_val; member
/third_party/cef/include/internal/
Dcef_types.h75 #define CefInt64GetLow(int64_val) static_cast<int32>(int64_val) argument
77 #define CefInt64GetHigh(int64_val) \ argument
78 static_cast<int32>((static_cast<int64>(int64_val) >> 32) & 0xFFFFFFFFL)
/third_party/mindspore/mindspore/lite/tools/converter/parser/tf/
Dtf_gather_parser.cc59 axis = tensor_proto.int64_val(0); in Parse()
Dtf_model_parser.cc195 const auto &origin_data = tensor_proto.int64_val(); in SetInt64TensorInfo()
/third_party/mindspore/third_party/proto/tensorflow/
Dtensor.proto66 repeated int64 int64_val = 10 [packed = true]; field
/third_party/grpc/third_party/upb/upb/bindings/lua/
Dmsg.c246 ret.int64_val = lupb_checkint64(L, narg); in lupb_tomsgval()
301 lupb_pushint64(L, val.int64_val); in lupb_pushmsgval()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c312 int64_t int64_val; member
382 val->int64_val = (n >> 1) ^ -(int64_t)(n & 1); in decode_munge()
5210 val.int64_val = upb_fielddef_defaultint64(f); in upb_msg_get()
Dupb.h3412 int64_t int64_val; member