HomeSort by relevance Sort by last modified time
    Searched refs:overflow (Results 176 - 200 of 1058) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/gallium/drivers/vc4/
vc4_simulator.c 70 struct mem_block *overflow; member in struct:vc4_simulator_state
293 /* Add one more for the overflow area that isn't wrapped in a BO. */
333 /* Add the static overflow memory area. */
335 bo_state[i].paddr = sim_state.overflow->ofs;
336 bo_state[i].size = sim_state.overflow->size;
352 void *overflow = calloc(1, sim_state.overflow->size); local
353 fwrite(overflow, 1, sim_state.overflow->size, f);
354 free(overflow);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
MultU64x32.S 38 imull 8(%esp), %ecx # overflow not detectable
  /external/clang/test/SemaCXX/
enum.cpp 108 enum { overflow = 123456 * 234567 }; enumerator in enum:__anon15832
  /external/icu/icu4c/source/common/
ucnv_u16.c 59 char overflow[4]; local
180 * prepare for overflow output
183 overflow[0]=(char)(c>>8);
184 overflow[1]=(char)c;
198 length=0; /* from here on, length counts the bytes in overflow[] */
211 /* output the surrogate pair, will overflow (see conditions comment above) */
213 overflow[0]=(char)(c>>8);
214 overflow[1]=(char)c;
215 overflow[2]=(char)(trail>>8);
216 overflow[3]=(char)trail
658 char overflow[4]; local
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
streambuf.pass.cpp 44 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
basic_ios.pass.cpp 38 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
ios_base.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
ostream.pass.cpp 38 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
streambuf.pass.cpp 44 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
double.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
float.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
int.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
long.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
long_double.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
long_long.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
short.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
unsigned_int.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
unsigned_long.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
unsigned_long_long.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
unsigned_short.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
endl.pass.cpp 40 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
ends.pass.cpp 38 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.rvalue/
CharT_pointer.pass.cpp 41 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/
put.pass.cpp 37 overflow(typename base::int_type __c = base::traits_type::eof()) function in class:testbuf
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
trace.c 33 tb->overflow = false;
48 * buffer should just stop when overflow happened, not be patchy. If
51 if (tb->overflow)
55 tb->overflow = true;
279 printf(" overflow %s\n", tb->overflow ? "TRUE" : "false");

Completed in 196 milliseconds

1 2 3 4 5 6 78 91011>>