Home
last modified time | relevance | path

Searched refs:off_64 (Results 1 - 1 of 1) sorted by relevance

/third_party/node/src/
H A Dnode_file.cc2030 const int64_t off_64 = args[2].As<Integer>()->Value(); in WriteBuffer() local
2031 CHECK_GE(off_64, 0); in WriteBuffer()
2032 CHECK_LE(static_cast<uint64_t>(off_64), buffer_length); in WriteBuffer()
2033 const size_t off = static_cast<size_t>(off_64); in WriteBuffer()
2235 const int64_t off_64 = args[2].As<Integer>()->Value(); in Read() local
2236 CHECK_GE(off_64, 0); in Read()
2237 CHECK_LT(static_cast<uint64_t>(off_64), buffer_length); in Read()
2238 const size_t off = static_cast<size_t>(off_64); in Read()

Completed in 5 milliseconds