HomeSort by relevance Sort by last modified time
    Searched refs:overflow (Results 76 - 100 of 1132) sorted by null

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-tic6x/
reloc-overflow-sbr-s16-2.d 4 #source: reloc-overflow-sbr-s16.s
reloc-overflow-sbr-u15-b-2.d 4 #source: reloc-overflow-sbr-u15-b.s
reloc-overflow-sbr-u15-h-2.d 4 #source: reloc-overflow-sbr-u15-h.s
reloc-overflow-sbr-u15-w-2.d 4 #source: reloc-overflow-sbr-u15-w.s
  /external/python/cpython3/Modules/_decimal/libmpdec/
memory.c 58 mpd_size_t overflow; local
68 &overflow);
69 if (overflow) {
84 /* malloc with overflow checking */
88 mpd_size_t req, overflow; local
90 req = mul_size_t_overflow(nmemb, size, &overflow);
91 if (overflow) {
98 /* calloc with overflow checking */
102 mpd_size_t overflow; local
104 (void)mul_size_t_overflow(nmemb, size, &overflow);
117 mpd_size_t req, overflow; local
138 mpd_size_t req, overflow; local
    [all...]
  /test/vti/dashboard/src/main/webapp/css/
plan_runs.css 20 text-overflow: ellipsis;
21 overflow-x: hidden;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
jaloverflow.s 1 # This file gets linked to start at 0xffffff0, so the call is an overflow.
  /external/python/cpython2/Misc/Vim/
vim_syntax.py 132 overflow = None
137 if overflow:
138 buffer_.append(overflow)
139 total_len += len(overflow) + 1
140 overflow = None
149 if overflow:
150 yield overflow
153 overflow = buffer_.pop()
154 total_len -= len(overflow) - 1
  /libcore/luni/src/main/native/
cbigint.cpp 538 uint64_t overflow; local
547 overflow = simpleAppendDecimalDigitHighPrecision(result, length, 0);
548 if (overflow)
549 result[length++] = overflow;
563 overflow = simpleMultiplyHighPrecision64 (result, length, TEN_E19);
564 if (overflow)
565 result[length++] = overflow;
570 overflow = simpleMultiplyHighPrecision (result, length, TEN_E9);
571 if (overflow)
572 result[length++] = overflow;
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
profbuf.go 43 // overflow entry, which has size 2+hdrsize+1, time set to the time of
48 // to hold more data, the overflow entry is stored as a pending overflow
49 // entry in the fields overflow and overflowTime. The pending overflow
52 // the output buffer has room for both the pending overflow entry and the
53 // new record, the writer emits the pending overflow entry and the new
55 // that the output buffer is empty but that there is a pending overflow
57 // overflow entry.
59 // Only the writer can create or add to a pending overflow entry, bu
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
profbuf.go 43 // overflow entry, which has size 2+hdrsize+1, time set to the time of
48 // to hold more data, the overflow entry is stored as a pending overflow
49 // entry in the fields overflow and overflowTime. The pending overflow
52 // the output buffer has room for both the pending overflow entry and the
53 // new record, the writer emits the pending overflow entry and the new
55 // that the output buffer is empty but that there is a pending overflow
57 // overflow entry.
59 // Only the writer can create or add to a pending overflow entry, bu
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug015.go 11 if i33 == (1<<64) -1 { // ERROR "overflow"
bug108.go 9 v := 1 << 1025; // ERROR "overflow|shift count too large"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug015.go 11 if i33 == (1<<64) -1 { // ERROR "overflow"
bug108.go 9 v := 1 << 1025; // ERROR "overflow|shift count too large"
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
emit-relocs-270-overflow.d 1 #source: emit-relocs-270-overflow.s
emit-relocs-271-overflow.d 1 #source: emit-relocs-271-overflow.s
emit-relocs-272-overflow.d 1 #source: emit-relocs-272-overflow.s
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pcrel16.d 1 #name: PCREL16 overflow
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pcrel16.d 1 #name: PCREL16 overflow
pr19807-1a.d 3 #ld: -pie -melf_x86_64 -z noreloc-overflow
pr19807-1b.d 3 #ld: -pie -melf32_x86_64 -z noreloc-overflow
pr19807-2d.d 3 #ld: -pie -melf_x86_64 -z noreloc-overflow
pr19807-2e.d 3 #ld: -pie -melf_x86_64 -z noreloc-overflow
  /external/python/cpython2/Modules/_sqlite/
util.c 141 int overflow; local
143 PY_LONG_LONG value = PyLong_AsLongLongAndOverflow(py_val, &overflow);
145 long value = PyLong_AsLongAndOverflow(py_val, &overflow);
149 if (!overflow) {

Completed in 386 milliseconds

1 2 34 5 6 7 8 91011>>