Searched refs:int64_val (Results 1 – 15 of 15) sorted by relevance
/third_party/grpc/third_party/upb/upb/ |
D | json_decode.c | 679 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 …]
|
D | json_encode.c | 112 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()
|
D | reflection.h | 16 int64_t int64_val; member
|
D | reflection.c | 124 val.int64_val = upb_fielddef_defaultint64(f); in upb_msg_get()
|
D | text_encode.c | 146 txtenc_printf(e, "%" PRId64, val.int64_val); in txtenc_field()
|
/third_party/protobuf/php/ext/google/protobuf/ |
D | convert.c | 361 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()
|
D | php-upb.c | 327 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 …]
|
D | php-upb.h | 3646 int64_t int64_val; member
|
/third_party/cef/include/internal/ |
D | cef_types.h | 75 #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/ |
D | tf_gather_parser.cc | 59 axis = tensor_proto.int64_val(0); in Parse()
|
D | tf_model_parser.cc | 195 const auto &origin_data = tensor_proto.int64_val(); in SetInt64TensorInfo()
|
/third_party/mindspore/third_party/proto/tensorflow/ |
D | tensor.proto | 66 repeated int64 int64_val = 10 [packed = true]; field
|
/third_party/grpc/third_party/upb/upb/bindings/lua/ |
D | msg.c | 246 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/ |
D | upb.c | 312 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()
|
D | upb.h | 3412 int64_t int64_val; member
|