Home
last modified time | relevance | path

Searched refs:checkInt (Results 1 – 5 of 5) sorted by relevance

/third_party/node/lib/internal/
Dbuffer.js60 function checkInt(value, min, max, buf, offset, byteLength) { function
581 checkInt(value, min, max, buf, offset, 7);
607 checkInt(value, min, max, buf, offset, 7);
661 checkInt(value, min, max, buf, offset, 5);
678 checkInt(value, min, max, buf, offset, 4);
694 checkInt(value, min, max, buf, offset, 3);
712 checkInt(value, min, max, buf, offset, 2);
724 checkInt(value, min, max, buf, offset, 1);
772 checkInt(value, min, max, buf, offset, 5);
789 checkInt(value, min, max, buf, offset, 4);
[all …]
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1393 function checkInt (buf, value, offset, ext, max, min) { function
1406 checkInt(this, value, offset, byteLength, maxBytes, 0)
1426 checkInt(this, value, offset, byteLength, maxBytes, 0)
1443 if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)
1452 if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)
1462 if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)
1472 if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)
1484 if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)
1550 checkInt(this, value, offset, byteLength, limit - 1, -limit)
1573 checkInt(this, value, offset, byteLength, limit - 1, -limit)
[all …]
/third_party/skia/src/core/
DSkReadBuffer.h200 int32_t checkInt(int min, int max);
203 return static_cast<T>(this->checkInt(static_cast<int32_t>(min), in checkRange()
DSkReadBuffer.cpp461 int32_t SkReadBuffer::checkInt(int32_t min, int32_t max) { in checkInt() function in SkReadBuffer
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DUtils.java175 RubyNumeric.checkInt(value, num); in num2uint()