HomeSort by relevance Sort by last modified time
    Searched defs:loop (Results 51 - 75 of 789) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/boringssl/mac-x86_64/crypto/fipsmodule/
md5-x86_64.S 37 L$loop:
653 jb L$loop
rdrand-x86_64.S 33 L$loop:
41 jnz L$loop
  /external/boringssl/src/ssl/test/runner/poly1305/
sum_amd64.s 79 loop: label
86 JAE loop
  /external/compiler-rt/test/tsan/
signal_errno.cc 25 static __attribute__((noinline)) void loop() { function
43 loop();
  /external/libavc/encoder/arm/
ih264e_evaluate_intra_chroma_modes_a9q.s 198 loop: label
231 bne loop
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
parallel_loop_emitter.cc 46 // Emit dynamic loop bounds for this dimension. Dynamic loop bounds
47 // are read from ir function dynamic loop bounds argument.
51 std::unique_ptr<llvm_ir::ForLoop> loop = loop_nest.AddLoop( local
54 array_index[dimension] = loop->GetIndVarValue();
56 // Emit static loop bounds for this dimension.
57 std::unique_ptr<llvm_ir::ForLoop> loop = loop_nest.AddLoop( local
61 array_index[dimension] = loop->GetIndVarValue();
64 // Point IR builder at inner loop BB.
68 // Set exit_bb_ to the exit block of the loop nest
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
loop_emitter.cc 94 // No loop needed, so set exit_bb_ to nullptr.
99 // Create loop nest with one for-loop for each dimension of the target shape.
107 std::unique_ptr<ForLoop> loop = loop_nest.AddLoop( local
111 array_index[dimension] = loop->GetIndVarValue();
114 // Set IR builder insertion point to the loop body basic block of the
115 // innermost loop.
120 // Set exit_bb_ to the exit block of the loop nest.
131 // Set the insertion point of ir_builder_ to the loop exit, so that
  /external/vixl/examples/aarch32/
pi.cc 52 Label loop; local
53 __ Bind(&loop);
71 __ B(ne, &loop);
  /external/vixl/examples/aarch64/
factorial.cc 36 Label loop, end; local
43 __ Bind(&loop);
46 __ Cbnz(x1, &loop);
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 55 sp<Looper> loop = new Looper(false); local
56 loop->addFd(myDisplayEvent.getFd(), 0, ALOOPER_EVENT_INPUT, receiver,
63 int32_t ret = loop->pollOnce(-1);
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5block_386.s 80 loop: label
174 JB loop
md5block_ppc64le.s 37 loop: label
184 BLT loop
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256block_386.s 175 loop: label
280 JB loop
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_amd64.s 79 loop: label
86 JAE loop
  /prebuilts/go/linux-x86/src/crypto/md5/
md5block_386.s 80 loop: label
174 JB loop
md5block_ppc64le.s 37 loop: label
184 BLT loop
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256block_386.s 175 loop: label
280 JB loop
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_amd64.s 79 loop: label
86 JAE loop
  /external/boringssl/src/crypto/fipsmodule/modes/asm/
ghash-x86_64.pl 147 sub loop() {
162 jmp .Loop$N
165 .Loop$N:
193 jmp .Loop$N
244 &loop ($Xi);
146 sub loop() { subroutine
    [all...]
  /external/libbrillo/brillo/message_loops/
glib_message_loop.h 42 // Called by the GLib's main loop when is time to call the callback scheduled
47 // Called by the GLib's main loop when the watched source |source| is
53 // Called by the GLib's main loop when the scheduled callback is removed due
65 GlibMessageLoop* loop; member in struct:brillo::GlibMessageLoop::ScheduledTask
  /external/ltp/testcases/kernel/controllers/memcg/regression/
memcg_test_1.c 32 #define LOOP 40
40 int loop; local
48 for (loop = 0; loop < LOOP; loop++) {
  /external/ltp/testcases/network/multicast/mc_opts/
mc_verify_opts.c 27 char loop = 0; local
109 len = sizeof(loop);
111 (s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
117 if (loop != 1) {
118 printf("Error: IP_MULTICAST_LOOP not enabled, loop = %i\n",
119 loop);
124 loop = 0; /* Disable IP_MULTICAST_LOOP */
125 if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(char)) !=
132 (s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
138 if (loop != 0)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_wait/
2-1.c 18 * 2. In each loop, Main thread initialize barrier, with count set to THREAD_NUM
23 * 6. This holds true for every loop.
73 int loop; local
81 for (loop = 0; loop < LOOP_NUM; loop++) {
84 printf("\n-Loop %d-\n", loop);
107 ("Test FAILED: On %d loop, PTHREAD_BARRIER_SERIAL_THREAD "
109 loop);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_getpshared/
2-1.c 25 * 5. Parent and Child execute same code: loop N times, calling pthread_barrier_wait()
68 int loop; local
163 for (loop = 0; loop < LOOP_NUM; loop++) {
  /external/mesa3d/src/compiler/nir/
nir_opt_trivial_continues.c 36 lower_trivial_continues_block(nir_block *block, nir_loop *loop)
46 nir_if_last_then_block(prev_if), loop);
48 nir_if_last_else_block(prev_if), loop);
65 * loop and continues to the top. We can exit normally instead of jump.
67 nir_lower_phis_to_regs_block(nir_loop_first_block(loop));
75 nir_loop *loop)
87 if (lower_trivial_continues_list(&nif->then_list, at_loop_tail, loop))
89 if (lower_trivial_continues_list(&nif->else_list, at_loop_tail, loop))
95 nir_loop *loop = nir_cf_node_as_loop(cf_node); local
96 if (lower_trivial_continues_list(&loop->body, true, loop)
    [all...]

Completed in 1107 milliseconds

1 23 4 5 6 7 8 91011>>