Home
last modified time | relevance | path

Searched refs:float_bytes (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_complex_cuda.cu28 std::size_t float_bytes = in1.size() * sizeof(float); in test_cuda_nullary() local
36 cudaMalloc((void**)(&d_out2), float_bytes); in test_cuda_nullary()
58 assert(cudaMemcpyAsync(new2.data(), d_out2, float_bytes, cudaMemcpyDeviceToHost, in test_cuda_nullary()
/external/protobuf/python/google/protobuf/internal/
Ddecoder.py301 float_bytes = buffer[pos:new_pos]
306 if (float_bytes[3:4] in b'\x7F\xFF' and float_bytes[2:3] >= b'\x80'):
308 if float_bytes[0:3] != b'\x00\x00\x80':
311 if float_bytes[3:4] == b'\xFF':
318 result = local_unpack('<f', float_bytes)[0]