/external/clang/test/OpenMP/ |
D | flush_messages.cpp | 9 #pragma omp flush in tmain() 11 #pragma omp flush untied // expected-error {{unexpected OpenMP clause 'untied' in directive '#prag… in tmain() 12 #pragma omp flush unknown // expected-warning {{extra tokens at the end of '#pragma omp flush' are … in tmain() 14 #pragma omp flush // expected-error {{'#pragma omp flush' cannot be an immediate substatement}} in tmain() 16 #pragma omp flush in tmain() 19 #pragma omp flush // expected-error {{'#pragma omp flush' cannot be an immediate substatement}} in tmain() 21 #pragma omp flush in tmain() 24 #pragma omp flush // expected-error {{'#pragma omp flush' cannot be an immediate substatement}} in tmain() 28 #pragma omp flush in tmain() 31 #pragma omp flush // expected-error {{'#pragma omp flush' cannot be an immediate substatement}} in tmain() [all …]
|
/external/skia/tests/ |
D | GrFinishedFlushTest.cpp | 32 surface->flush(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 33 ctx->flush(kSyncCpu_GrFlushFlag, 0, nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 38 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, kNone_GrFlushFlags, 0, nullptr, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 41 ctx->flush(kSyncCpu_GrFlushFlag, 0, nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 47 surface->flush(SkSurface::BackendSurfaceAccess::kNoAccess, kNone_GrFlushFlags, 0, nullptr, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 58 ctx->flush(kSyncCpu_GrFlushFlag, 0, nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 63 ctx->flush(kNone_GrFlushFlags, 0, nullptr, testing_finished_proc, (void*)&count); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 71 ctx->flush(kSyncCpu_GrFlushFlag, 0, nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 75 ctx->flush(kNone_GrFlushFlags, 0, nullptr, testing_finished_proc, (void*)&count); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 77 ctx->flush(kSyncCpu_GrFlushFlag, 0, nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all …]
|
/external/okhttp/okio/okio/src/test/java/okio/ |
D | BufferedSinkTest.java | 88 sink.flush(); 95 sink.flush(); 103 sink.flush(); 112 sink.flush(); 119 sink.flush(); 126 sink.flush(); 134 sink.flush(); 144 sink.flush(); 153 sink.flush(); 160 sink.flush(); [all …]
|
/external/gemmlowp/meta/ |
D | streams_arm_32.h | 34 << std::flush; in Pack() 75 << std::flush; in Pack() 128 << std::flush; in Pack() 181 << std::flush; in Pack() 235 << std::flush; in Pack() 288 << std::flush; in Pack() 342 << std::flush; in Pack() 396 << std::flush; in Pack() 451 << std::flush; in Pack() 499 << std::flush; in Pack() [all …]
|
D | streams_arm_64.h | 34 << std::flush; in Pack() 75 << std::flush; in Pack() 128 << std::flush; in Pack() 181 << std::flush; in Pack() 235 << std::flush; in Pack() 288 << std::flush; in Pack() 342 << std::flush; in Pack() 396 << std::flush; in Pack() 451 << std::flush; in Pack() 497 << std::flush; in Pack() [all …]
|
D | transform_kernels_arm_32.h | 34 << std::flush; in Transform() 109 << std::flush; in Transform() 206 << std::flush; in Transform() 303 << std::flush; in Transform() 402 << std::flush; in Transform() 499 << std::flush; in Transform() 605 << std::flush; in Transform() 710 << std::flush; in Transform() 817 << std::flush; in Transform() 921 << std::flush; in Transform() [all …]
|
D | transform_kernels_arm_64.h | 34 << std::flush; in Transform() 107 << std::flush; in Transform() 202 << std::flush; in Transform() 297 << std::flush; in Transform() 394 << std::flush; in Transform() 489 << std::flush; in Transform() 593 << std::flush; in Transform() 697 << std::flush; in Transform() 803 << std::flush; in Transform() 905 << std::flush; in Transform() [all …]
|
D | quantized_mul_kernels_arm_64.h | 39 << std::flush; in Multiply() 112 << std::flush; in Multiply() 188 << std::flush; in Multiply() 270 << std::flush; in Multiply() 354 << std::flush; in Multiply() 451 << std::flush; in Multiply() 551 << std::flush; in Multiply() 656 << std::flush; in Multiply() 763 << std::flush; in Multiply() 852 << std::flush; in Multiply() [all …]
|
D | quantized_mul_kernels_arm_32.h | 39 << std::flush; in Multiply() 113 << std::flush; in Multiply() 191 << std::flush; in Multiply() 275 << std::flush; in Multiply() 363 << std::flush; in Multiply() 464 << std::flush; in Multiply() 569 << std::flush; in Multiply() 680 << std::flush; in Multiply() 795 << std::flush; in Multiply() 884 << std::flush; in Multiply() [all …]
|
/external/grpc-grpc/src/core/lib/compression/ |
D | stream_compression_gzip.cc | 34 int (*flate)(z_stream* zs, int flush); 39 size_t* output_size, size_t max_output_size, int flush, in gzip_flate() argument 41 GPR_ASSERT(flush == 0 || flush == Z_SYNC_FLUSH || flush == Z_FINISH); in gzip_flate() 43 GPR_ASSERT(!(ctx->flate == inflate && (flush == Z_FINISH))); in gzip_flate() 49 while (max_output_size > 0 && (in->length > 0 || flush) && !eoc) { in gzip_flate() 76 if (flush != 0 && ctx->zs.avail_out > 0 && !eoc) { in gzip_flate() 78 r = ctx->flate(&ctx->zs, flush); in gzip_flate() 79 if (flush == Z_SYNC_FLUSH) { in gzip_flate() 84 flush = 0; in gzip_flate() 89 flush = 0; in gzip_flate() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_zlib.py | 117 self.assertRaises(ValueError, zlib.decompressobj().flush, 0) 118 self.assertRaises(ValueError, zlib.decompressobj().flush, -1) 127 zlib.decompressobj().flush(sys.maxsize + 1) 236 x2 = co.flush() 237 self.assertRaises(zlib.error, co.flush) # second flush should not work 242 y2 = dco.flush() 264 x = co.compress(HAMLET_SCENE) + co.flush() 265 y = do.decompress(x, max_length=len(HAMLET_SCENE)) + do.flush() 277 x2 = co.flush() 280 y2 = dco.flush() [all …]
|
/external/ImageMagick/Magick++/tests/ |
D | exceptions.cpp | 24 cout.flush(); in main() 43 cout.flush(); in main() 49 cout.flush(); in main() 67 cout.flush(); in main() 73 cout.flush(); in main() 82 cout.flush(); in main() 88 cout.flush(); in main() 95 cout.flush(); in main()
|
/external/python/cpython2/Lib/test/ |
D | test_zlib.py | 115 self.assertRaises(ValueError, zlib.decompressobj().flush, 0) 116 self.assertRaises(ValueError, zlib.decompressobj().flush, -1) 125 zlib.decompressobj().flush(sys.maxsize + 1) 220 x2 = co.flush() 221 self.assertRaises(zlib.error, co.flush) # second flush should not work 224 y2 = dco.flush() 236 x2 = co.flush() 239 y2 = dco.flush() 249 bufs.append(co.flush()) 254 y2 = dco.flush() [all …]
|
/external/eigen/bench/btl/generic_bench/utils/ |
D | utilities.h | 21 # define HEREWEARE cout<<flush ; cerr << __FILE__ << " [" << __LINE__ << "] : " << flush ; 23 # define PYSCRIPT(chain) {cout<<flush ; cerr << "---PYSCRIPT--- " << chain << endl ;} 43 cerr << flush;\ 50 cout << flush ;\ 57 # define HERE cout<<flush ; cerr << "- Trace " << __FILE__ << " [" << __LINE__ << "] : " << flush ; 66 #define REPERE cout<<flush ; cerr << " --------------" << endl << flush ;
|
/external/toolchain-utils/cros_utils/ |
D | logger.py | 94 def _WriteTo(self, fd, msg, flush): argument 97 if flush: 98 fd.flush() 103 term_fd.flush() 105 term_fd.flush() 111 term_fd.flush() 117 term_fd.flush() 119 def LogMsg(self, file_fd, term_fd, msg, flush=True): argument 121 self._WriteTo(file_fd, msg, flush) 123 self._WriteTo(term_fd, msg, flush) [all …]
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_bufmgr_alt.c | 83 assert(mgr->provider1->flush); in pb_alt_manager_flush() 84 if(mgr->provider1->flush) in pb_alt_manager_flush() 85 mgr->provider1->flush(mgr->provider1); in pb_alt_manager_flush() 87 assert(mgr->provider2->flush); in pb_alt_manager_flush() 88 if(mgr->provider2->flush) in pb_alt_manager_flush() 89 mgr->provider2->flush(mgr->provider2); in pb_alt_manager_flush() 115 mgr->base.flush = pb_alt_manager_flush; in pb_alt_manager_create()
|
/external/nos/test/system-test-harness/src/ |
D | util.cc | 241 std::cout.flush(); in SendSpi() 301 std::cout.flush(); in GetAhdlc() 317 std::cout.flush(); in GetAhdlc() 327 std::cout.flush(); in GetAhdlc() 345 std::cout.flush(); in GetAhdlc() 352 std::cout.flush(); in GetAhdlc() 361 std::cout.flush(); in GetAhdlc() 387 std::cout.flush(); in GetSpi() 408 std::cout.flush(); in Init() 473 std::cout.flush(); in Init() [all …]
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | WriteQueue.java | 44 flush(); 77 ChannelFuture enqueue(QueuedCommand command, boolean flush) { in enqueue() argument 84 if (flush) { in enqueue() 95 void enqueue(Runnable runnable, boolean flush) { in enqueue() argument 97 if (flush) { in enqueue() 106 private void flush() { in flush() method in WriteQueue 118 channel.flush(); in flush() 124 channel.flush(); in flush()
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetDecoderICU.java | 270 … abstract CoderResult decodeLoop(ByteBuffer in, CharBuffer out, IntBuffer offsets, boolean flush); in decodeLoop() argument 282 … final CoderResult decode(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decode() argument 338 if (!flush && !source.hasRemaining() && toULength == 0 && preToULength >= 0) { in decode() 351 return toUnicodeWithCallback(source, target, offsets, flush); in decode() 396 …sult toUnicodeWithCallback(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush){ in toUnicodeWithCallback() argument 426 realFlush=flush; in toUnicodeWithCallback() 433 flush=false; in toUnicodeWithCallback() 453 cr = decodeLoop(source, target, offsets, flush); in toUnicodeWithCallback() 462 … converterSawEndOfInput= (cr.isUnderflow() && flush && source.remaining()==0 && toULength == 0); in toUnicodeWithCallback() 512 realFlush=flush; in toUnicodeWithCallback() [all …]
|
D | CharsetASCII.java | 41 boolean flush) { in decodeLoop() argument 191 boolean flush) { in encodeLoop() argument 211 cr = encodeTrail(source, (char) fromUChar32, flush); in encodeLoop() 238 …codeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit, flush); in encodeLoop() 253 cr = encodeLoopCoreUnoptimized(source, target, flush); in encodeLoop() 273 boolean flush) { in encodeLoopCoreOptimized() argument 291 return encodeMalformedOrUnmappable(source, ch, flush); in encodeLoopCoreOptimized() 296 …tected CoderResult encodeLoopCoreUnoptimized(CharBuffer source, ByteBuffer target, boolean flush) { in encodeLoopCoreUnoptimized() argument 317 return encodeMalformedOrUnmappable(source, ch, flush); in encodeLoopCoreUnoptimized() 324 …protected final CoderResult encodeMalformedOrUnmappable(CharBuffer source, int ch, boolean flush) { in encodeMalformedOrUnmappable() argument [all …]
|
/external/gemmlowp/test/ |
D | correctness_meta_gemm.cc | 98 << std::flush; in check_result() 101 std::cout << "." << std::flush; in check_result() 130 << std::flush; in check_result_f() 133 std::cout << "." << std::flush; in check_result_f() 162 << std::flush; in check_result_i32() 165 std::cout << "." << std::flush; in check_result_i32() 284 std::cout << "Threads: " << t << std::endl << std::flush; in main() 286 std::cout << "Quantized 8 bit." << std::endl << std::flush; in main() 288 std::cout << "Small." << std::endl << std::flush; in main() 293 std::cout << "Big." << std::endl << std::flush; in main() [all …]
|
/external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/ |
D | AsyncFrameWriterTest.java | 60 asyncFrameWriter.flush(); in noCoalesceRequired() 64 verify(frameWriter, times(1)).flush(); in noCoalesceRequired() 70 asyncFrameWriter.flush(); in flushCoalescing_shouldNotMergeTwoDistinctFlushes() 74 asyncFrameWriter.flush(); in flushCoalescing_shouldNotMergeTwoDistinctFlushes() 78 verify(frameWriter, times(2)).flush(); in flushCoalescing_shouldNotMergeTwoDistinctFlushes() 84 asyncFrameWriter.flush(); in flushCoalescing_shouldMergeTwoQueuedFlushes() 86 asyncFrameWriter.flush(); in flushCoalescing_shouldMergeTwoQueuedFlushes() 92 inOrder.verify(frameWriter).flush(); in flushCoalescing_shouldMergeTwoQueuedFlushes()
|
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/ |
D | OkHttpClientStream.java | 150 WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages) { in writeFrame() argument 163 state.sendBuffer(buffer, endOfStream, flush); in writeFrame() 232 boolean flush = false; in start() 236 if (data.flush) { in start() 237 flush = true; in start() 240 if (flush) { in start() 241 outboundFlow.flush(); in start() 362 private void sendBuffer(Buffer buffer, boolean endOfStream, boolean flush) { in sendBuffer() argument 368 pendingData.add(new PendingData(buffer, endOfStream, flush)); in sendBuffer() 373 outboundFlow.data(endOfStream, id(), buffer, flush); in sendBuffer() [all …]
|
/external/u-boot/board/armadeus/apf27/ |
D | fpga.h | 14 extern int fpga_pgm_fn(int assert_pgm, int flush, int cookie); 15 extern int fpga_cs_fn(int assert_cs, int flush, int cookie); 18 extern int fpga_clk_fn(int assert_clk, int flush, int cookie); 19 extern int fpga_wr_fn(int assert_write, int flush, int cookie); 21 extern int fpga_wdata_fn(unsigned char data, int flush, int cookie);
|
/external/zlib/src/examples/ |
D | fitblk.c | 75 int ret, flush; in partcompress() local 78 flush = Z_NO_FLUSH; in partcompress() 85 flush = Z_FINISH; in partcompress() 86 ret = deflate(def, flush); in partcompress() 88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress() 98 int ret, flush; in recompress() local 101 flush = Z_NO_FLUSH; in recompress() 116 flush = Z_FINISH; in recompress() 117 ret = deflate(def, flush); in recompress()
|