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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
constant-conversion.c 14 a.i5 = 36; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 36 to 4}}
34 struct A a = { 0, 10 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to -2}}
35 struct A b[] = { 0, 10, 0, 0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to -2}}
36 struct A c[] = {{10, 0}}; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
37 struct A d = (struct A) { 10, 0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
38 struct A e = { .foo = 10 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
46 a.c = 0x101; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 257 to 1}}
60 // Test that unreachable code doesn't trigger the truncation warning.
72 f.twoBits1 = ~1; // expected-warning {{implicit truncation from 'int' to bitfield changes value from -2 to 2}}
73 f.twoBits2 = ~2; // expected-warning {{implicit truncation from 'int' to bitfield changes value from -3 to 1}
    [all...]
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
additional-options.cc 7 // (truncation and unused local).
  /external/chromium_org/chrome/installer/util/
logging_installer.h 24 // truncation on every update.
41 // If the file needed truncation, but the truncation failed, the file will be
  /libcore/luni/src/main/java/java/sql/
DataTruncation.java 42 private static final String THE_REASON = "Data truncation";
52 * "Data truncation"}, the error code is set to the {@code
63 * {@code true} if the truncation occurred on a read operation,
68 * the size of the data after truncation.
81 * Creates a DataTruncation. The Reason is set to "Data truncation", the
92 * true if the truncation occurred on a read operation, false
97 * the size of the data after truncation
  /external/clang/test/CodeCompletion/
truncation.c 1 #include "truncation.c.h"
  /external/llvm/lib/MC/
MCAtom.cpp 23 "Truncation point not contained in atom!");
87 assert(I != Insts.end() && "Truncation point not found in disassembly!");
89 "Truncation point does not fall on instruction boundary");
  /external/chromium_org/third_party/tcmalloc/chromium/src/
raw_printer.cc 60 // Perhaps an old glibc that returns -1 on truncation?
63 // Truncation
  /external/chromium_org/third_party/tcmalloc/vendor/src/
raw_printer.cc 60 // Perhaps an old glibc that returns -1 on truncation?
63 // Truncation
  /external/chromium_org/base/debug/
crash_logging_unittest.cc 75 // Fill three chunks with truncation (max length is 15, this string is 20).
89 // Refill all three chunks with truncation, then test that setting a smaller
142 // Test truncation.
161 // Test chunk pair truncation.
  /external/llvm/test/Transforms/IndVarSimplify/
masked-iv.ll 6 ; and only use one truncation.
  /ndk/sources/android/support/tests/
stdio_unittest.cc 30 // Unlike snprintf(), swprintf() returns -1 in case of truncation
  /external/clang/test/Analysis/
fields.c 122 bits.c = 0x11; // expected-warning{{implicit truncation}}
123 // FIXME: We don't model truncation of bitfields.
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
callback.rs 90 uint32_t uv_row = y_scaled / 2; // truncation is important here
107 uint32_t uv_row = y_scaled / 2; // truncation is important here
  /bionic/libc/string/
strlcat.c 27 * If retval >= siz, truncation occurred.
strlcpy.c 25 * Returns strlen(src); if retval >= siz, truncation occurred.
  /external/chromium_org/third_party/qcms/
README.chromium 32 - Fix integer truncation warning/errors on Win64 build.
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-7.js 28 // Test correct truncation of tagged values.
  /external/libgsm/src/
decode.c 31 *s = GSM_ADD(msr, msr) & 0xFFF8; /* Truncation & Upscaling */
  /external/libogg/doc/libogg/
oggpack_writetrunc.html 39 <dd>Number of bits to keep in the buffer (size after truncation)</dd>
  /external/llvm/lib/Support/
regstrlcpy.c 26 * Returns strlen(src); if retval >= siz, truncation occurred.
  /external/llvm/test/CodeGen/X86/
trunc-to-bool.ll 1 ; An integer truncation to i1 should be done with an and instruction to make
  /external/mksh/src/
strlcpy.c 26 * Returns strlen(src); if retval >= siz, truncation occurred.
  /external/openssh/openbsd-compat/
strlcpy.c 30 * Returns strlen(src); if retval >= siz, truncation occurred.
  /external/v8/test/mjsunit/compiler/
regress-7.js 28 // Test correct truncation of tagged values.