HomeSort by relevance Sort by last modified time
    Searched full:toobig (Results 1 - 25 of 47) sorted by null

1 2

  /external/pdfium/fxjs/
cjs_scalewhen.cpp 12 {"tooBig", JSConstSpec::Number, 2, 0},
  /art/test/061-out-of-memory/src/
Main.java 36 int[] tooBig = new int[COUNT];
38 Arrays.fill(tooBig, 0xdd);
  /frameworks/opt/net/lowpan/lowpan_hdlc_adapter/
lowpan_hdlc_adapter.cpp 78 ALOGE("TOOBIG: Frame received from device is too big");
145 case LowpanStatus::TOOBIG:
146 ALOGW("TOOBIG: Device sending frames that are too large.");
231 ALOGE("TOOBIG: HDLC frame too big (Max: %d)", kReadThreadBufferSize);
  /prebuilts/go/darwin-x86/src/encoding/gob/
decoder.go 15 // tooBig provides a sanity check for sizes; used in several places.
18 const tooBig = 1 << 30
85 if nbytes >= tooBig {
encoder.go 70 if messageLen >= tooBig {
  /prebuilts/go/linux-x86/src/encoding/gob/
decoder.go 15 // tooBig provides a sanity check for sizes; used in several places.
18 const tooBig = 1 << 30
85 if nbytes >= tooBig {
encoder.go 70 if messageLen >= tooBig {
  /external/libmojo/mojo/public/cpp/bindings/tests/
buffer_unittest.cc 72 TEST(FixedBufferTest, TooBig) {
  /external/pdfium/testing/resources/javascript/
consts.in 92 doTest("scaleWhen", ["always", "never", "tooBig", "tooSmall", "nonesuch"]);
consts_expected.txt 45 Alert: scaleWhen.tooBig is 2
  /external/libchrome/base/
security_unittest.cc 96 // Test array[TooBig][X] and array[X][TooBig] allocations for int overflows.
  /external/llvm/unittests/DebugInfo/DWARF/
DWARFFormValueTest.cpp 102 auto TooBig = createULEBFormValue(uint64_t(LLONG_MAX) + 1);
104 EXPECT_EQ(TooBig.getAsSignedConstant().hasValue(), false);
  /external/syslinux/core/lwip/src/core/snmp/
msg_out.c 110 * and provide error-status and index (except for tooBig errors) ...
128 LWIP_DEBUGF(SNMP_MSG_DEBUG, ("snmp_snd_response() tooBig\n"));
130 /* can't construct reply, return error-status tooBig */
181 /** @todo release some memory, retry and return tooBig? tooMuchHassle? */
198 very low on memory, couldn't return tooBig */
msg_in.c 128 /* serious memory problem, can't return tooBig */
615 /** @todo use set_value_pc() if toobig */
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java 238 private boolean tooBig() {
270 * Return a possibly reduced version of r that's not tooBig().
276 if (!r.tooBig() && (sReduceRng.nextInt() & 0xf) != 0) {
281 if (!result.tooBig()) {
460 if (result == null || result.tooBig()) {
  /external/toolchain-utils/go/patch/
go7.patch 14 huge := make([]byte, tooBig)
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldFileChannelTest.java 238 long tooBig = Integer.MAX_VALUE + 1L;
239 FileLock lock = readWriteFileChannel.tryLock(tooBig, 1, false);
240 assertLockFails(tooBig, 1);
243 lock = readWriteFileChannel.tryLock(0, tooBig, false);
    [all...]
  /kernel/tests/net/test/
xfrm_tunnel_test.py 402 _, toobig = packets.ICMPPacketTooBig(version, intermediate, myaddr, pkt)
403 self.ReceivePacketOn(vti.underlying_netid, toobig)
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 68 static const unsigned TooBig = 1u << NumBitsPerType;
100 static_assert(LastHashType <= TooBig, "Too many types in HashType");
110 const unsigned PGOHash::TooBig;
580 assert(unsigned(Type) < TooBig && "Hash is invalid: too many types");
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbydns.c 207 int toobig = 0; local
446 if (!toobig++)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 451 final int tooBig = getContext().getResources().getInteger(
453 if (mIcon.number > tooBig) {
  /external/dhcpcd-6.8.2/
dhcp.c 954 goto toobig;
971 goto toobig;
990 goto toobig;
1014 goto toobig;
1039 goto toobig;
1062 toobig:
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 228 int toobig = 0; local
453 if (!toobig++) {
    [all...]
  /external/skia/src/core/
SkPaint.cpp 374 static bool tooBig(const SkMatrix& m, SkScalar ma2max) {
386 return tooBig(matrix, MaxCacheSize2(maxLimit));
    [all...]
  /external/skqp/src/core/
SkPaint.cpp 374 static bool tooBig(const SkMatrix& m, SkScalar ma2max) {
386 return tooBig(matrix, MaxCacheSize2(maxLimit));
    [all...]

Completed in 1384 milliseconds

1 2