| /src/external/gpl3/gcc/dist/gcc/config/i386/ |
| x86-tune-sched-atom.cc | 38 /* Try to reorder ready list to take advantage of Atom pipelined IMUL 42 ready list. 45 do_reorder_for_imul (rtx_insn **ready, int n_ready) 57 /* Check that IMUL instruction is on the top of ready list. */ 58 insn = ready[n_ready - 1]; 69 insn = ready[i]; 118 /* Try to find the best candidate on the top of ready list if two insns 123 swap_top_of_ready_list (rtx_insn **ready, int n_ready) 125 rtx_insn *top = ready[n_ready - 1]; 126 rtx_insn *next = ready[n_ready - 2] [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| x86-tune-sched-atom.cc | 38 /* Try to reorder ready list to take advantage of Atom pipelined IMUL 42 ready list. 45 do_reorder_for_imul (rtx_insn **ready, int n_ready) 57 /* Check that IMUL instruction is on the top of ready list. */ 58 insn = ready[n_ready - 1]; 69 insn = ready[i]; 118 /* Try to find the best candidate on the top of ready list if two insns 123 swap_top_of_ready_list (rtx_insn **ready, int n_ready) 125 rtx_insn *top = ready[n_ready - 1]; 126 rtx_insn *next = ready[n_ready - 2] [all...] |
| /src/external/bsd/iscsi/dist/include/ |
| so.h | 49 unsigned char ready; /* flag ready for FLOPTICAL */ member in struct:scsi_osd
|
| /src/external/gpl3/gdb/dist/gdb/ |
| async-event.c | 25 /* PROC is a function to be invoked when the READY flag is set. This 37 /* If ready, call this handler from the main event loop, using 39 int ready; member in struct:async_signal_handler 54 /* PROC is a function to be invoked when the READY flag is set. This 62 /* If ready, call this handler from the main event loop, using 64 int ready; member in struct:async_event_handler 143 async_handler_ptr->ready = 0; 156 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information 178 async_handler_ptr->ready = 1; 189 async_handler_ptr->ready = 0 [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| async-event.c | 25 /* PROC is a function to be invoked when the READY flag is set. This 37 /* If ready, call this handler from the main event loop, using 39 int ready; member in struct:async_signal_handler 54 /* PROC is a function to be invoked when the READY flag is set. This 62 /* If ready, call this handler from the main event loop, using 64 int ready; member in struct:async_event_handler 143 async_handler_ptr->ready = 0; 156 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information 178 async_handler_ptr->ready = 1; 189 async_handler_ptr->ready = 0 [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| queue-signal.c | 24 int ready; variable 66 while (!ready) 75 while (!ready) 102 while (!ready) 124 ready = 0;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| queue-signal.c | 24 int ready; variable 66 while (!ready) 75 while (!ready) 102 while (!ready) 124 ready = 0;
|
| /src/external/apache2/llvm/dist/llvm/utils/ |
| check_ninja_deps.py | 74 ready = {v for v, d in ideg.items() if d == 0} 77 while len(ready) > 0: 78 v = next(iter(ready)) 80 ready.remove(v) 88 # If that counter reaches zero, w is ready to output. 89 ready.add(w)
|
| /src/games/sail/ |
| pl_6.c | 148 int loadL, loadR, ready, load; local 170 ready = 0; 174 ready = R_DOUBLE; 178 ready = 0; 182 ready = 0; 190 mf->readyR = ready|R_LOADING; 193 mf->readyL = ready|R_LOADING;
|
| pl_3.c | 56 int guns, car, ready, shootat, hit; local 78 ready = mf->readyR; 83 ready = mf->readyL; 89 (ready & R_LOADED) == 0) 159 if (ready & R_INITIAL) {
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| hw_com.c | 130 The device will always be ready for I/O (no delay properties specified) 184 int ready; member in struct:_com_port 249 /* ready from the start */ 250 com->input.ready = 1; 252 com->output.ready = 1; 262 com->input.interrupting = (com->input.ready && (com->reg[1] & 0x1)); 263 com->output.interrupting = (com->output.ready && (com->reg[1] & 0x2)); 286 com->input.ready = 1; 310 if (com->input.ready) { 322 /* once lost carrier, never ready */ [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| hw_com.c | 130 The device will always be ready for I/O (no delay properties specified) 184 int ready; member in struct:_com_port 249 /* ready from the start */ 250 com->input.ready = 1; 252 com->output.ready = 1; 262 com->input.interrupting = (com->input.ready && (com->reg[1] & 0x1)); 263 com->output.interrupting = (com->output.ready && (com->reg[1] & 0x2)); 286 com->input.ready = 1; 310 if (com->input.ready) { 322 /* once lost carrier, never ready */ [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| haifa-sched.cc | 42 all the ready insns, and sorted according to priority number, we 48 or add it to the ready list. As the instructions are scheduled or 50 the ready list. When all insns down to the lowest priority have 56 among insns in the ready list: 210 N=2: bb's probabilities, detailed ready list info, unit/insn info. 239 /* Original order of insns in the ready list. 243 /* The deciding reason for INSN's place in the ready list. */ 282 /* An instruction is ready to be scheduled when all insns preceding it 291 (R) the "Ready" list of unscheduled, uncommitted insns. 294 Initially, all insns are either "Pending" or "Ready" depending o 354 struct ready_list ready = {NULL, 0, 0, 0, 0}; variable in typeref:struct:ready_list [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| haifa-sched.cc | 42 all the ready insns, and sorted according to priority number, we 48 or add it to the ready list. As the instructions are scheduled or 50 the ready list. When all insns down to the lowest priority have 56 among insns in the ready list: 210 N=2: bb's probabilities, detailed ready list info, unit/insn info. 239 /* Original order of insns in the ready list. 243 /* The deciding reason for INSN's place in the ready list. */ 282 /* An instruction is ready to be scheduled when all insns preceding it 291 (R) the "Ready" list of unscheduled, uncommitted insns. 294 Initially, all insns are either "Pending" or "Ready" depending o 354 struct ready_list ready = {NULL, 0, 0, 0, 0}; variable in typeref:struct:ready_list [all...] |
| /src/bin/date/ |
| netdate.c | 85 struct pollfd ready; local 141 ready.fd = s; 142 ready.events = POLLIN; 144 found = poll(&ready, 1, waittime); 164 if (found > 0 && ready.revents & POLLIN) {
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| thread-pool.h | 53 ready, 90 return future_status::ready; 112 return future_status::ready;
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| parens.c | 118 int orig_point, match_point, ready; local 139 ready = _rl_timeout_select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer, NULL); 141 ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| thread-pool.h | 53 ready, 90 return future_status::ready; 112 return future_status::ready;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/ |
| nouveau_nvkm_falcon_cmdq.c | 138 if (!wait_for_completion_timeout(&cmdq->ready, 140 FLCNQ_ERR(cmdq, "timeout waiting for queue ready"); 178 reinit_completion(&cmdq->ready); 191 complete_all(&cmdq->ready); 202 destroy_completion(&cmdq->ready); 221 init_completion(&cmdq->ready);
|
| /src/sys/arch/vax/boot/boot/ |
| consio2.S | 44 tstl %r0 # check if char ready 86 jsb *0x20(%r11) # is rom ready? (KA630_PUTC_POLL) 118 jsb *0x20(%r11) # is rom ready?
|
| /src/external/apache2/llvm/dist/libcxx/src/ |
| future.cpp | 48 "to the associated state becoming ready."); 96 __state_ |= __constructed | ready; 117 __state_ |= ready; 135 __state_ |= ready;
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| parens.c | 118 int orig_point, match_point, ready; local 138 ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
|
| /src/common/lib/libc/arch/sparc/string/ |
| ffs.S | 70 srl %o0, 8, %o0 ! delay slot, get ready for next byte
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_gart.h | 58 bool ready; member in struct:amdgpu_gart
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
| dc_link_dp.h | 83 void dp_set_fec_ready(struct dc_link *link, bool ready);
|