| /src/external/gpl3/gdb.old/dist/gdb/ |
| thread-fsm.h | 76 too. For example, the "finish" command saves the just-finished 103 finished = true; 108 return finished; 122 bool finished = false; member in struct:thread_fsm
|
| tid-parse.c | 178 tid_range_parser::finished () const function in class:tid_range_parser 183 /* Parsing is finished when at end of string or null string, 192 return m_range_parser.finished (); 296 /* If we successfully parsed a thread number or finished parsing a 367 if (parser.finished ()) 369 while (!parser.finished ())
|
| /src/external/gpl3/gdb/dist/gdb/ |
| thread-fsm.h | 76 too. For example, the "finish" command saves the just-finished 103 finished = true; 108 return finished; 122 bool finished = false; member in struct:thread_fsm
|
| tid-parse.c | 178 tid_range_parser::finished () const function in class:tid_range_parser 183 /* Parsing is finished when at end of string or null string, 192 return m_range_parser.finished (); 296 /* If we successfully parsed a thread number or finished parsing a 367 if (parser.finished ()) 369 while (!parser.finished ())
|
| /src/sys/arch/alpha/alpha/ |
| qemu.c | 86 const unsigned long finished = base + nsec; local 87 KASSERT(finished > base); 91 /* Spin until we're finished. */ 92 while ((now = qemu_get_vmtime()) < finished) { 97 if (finished - now > qemu_nsec_per_tick) {
|
| /src/sys/external/bsd/sljit/dist/regex_src/ |
| regexMain.c | 101 int finished; /* -1 : don't care, 0 : false, 1 : true. */ member in struct:test_case 113 int begin, end, id, finished; local 169 finished = regex_is_match_finished(match); 177 if (test->finished != -1 && test->finished != !!finished) { 188 finished = regex_is_match_finished(match); 197 if (test->finished != -1 && test->finished != !!finished) { [all...] |
| /src/external/bsd/zstd/dist/examples/ |
| streaming_compression.c | 60 * If the read may not be finished (read == toRead) we use 72 int finished; local 81 /* If we're on the last chunk we're finished when zstd returns 0, 82 * which means its consumed all the input AND finished the frame. 83 * Otherwise, we're finished when we've consumed all the input. 85 finished = lastChunk ? (remaining == 0) : (input.pos == input.size); 86 } while (!finished);
|
| multiple_streaming_compression.c | 79 int finished; local 85 finished = lastChunk ? (remaining == 0) : (input.pos == input.size); 86 } while (!finished);
|
| streaming_compression_thread_pool.c | 70 * If the read may not be finished (read == toRead) we use 82 int finished; local 91 /* If we're on the last chunk we're finished when zstd returns 0, 92 * which means its consumed all the input AND finished the frame. 93 * Otherwise, we're finished when we've consumed all the input. 95 finished = lastChunk ? (remaining == 0) : (input.pos == input.size); 96 } while (!finished);
|
| /src/external/gpl2/lvm2/dist/tools/ |
| polldaemon.c | 104 int *finished) 110 *finished = 1; 128 *finished = 0; 137 /* Finished? Or progress to next segment? */ 148 *finished = 0; /* Another segment */ 159 int finished = 0; local 162 while (!finished) { 188 if (!_check_lv_status(cmd, vg, lv, name, parms, &finished)) { 206 int finished; local 216 if (_check_lv_status(cmd, vg, lv, name, parms, &finished) & [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/common/ |
| outqueue.h | 35 /// amount of finished data written to buf[] which can be copied out 54 bool finished; member in struct:lzma_outbuf_s 57 /// a finished buffer has been read. Defaults to LZMA_STREAM_END. 60 /// together with finished = true. 64 /// when "finished" is true. 183 /// is used to protect lzma_outbuf.finished. 188 /// \brief Read finished data 202 /// - LZMA_STREAM_END: The buffer being read was finished. 206 /// \note This reads lzma_outbuf.finished and .pos variables and thus 218 /// If the buffer at the head of the output queue isn't finished, [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_job.c | 117 f = job->base.s_fence ? &job->base.s_fence->finished : job->fence; 161 *f = dma_fence_get(&job->base.s_fence->finished); 208 &job->base.s_fence->finished, 222 struct dma_fence *fence = NULL, *finished; local 227 finished = &job->base.s_fence->finished; 234 dma_fence_set_error(finished, -ECANCELED);/* skip IB as well if VRAM lost */ 236 if (finished->error < 0) { 276 dma_fence_set_error(&s_fence->finished, -EHWPOISON); 277 dma_fence_signal(&s_fence->finished); [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| bio_enc.c | 32 int cont; /* <= 0 when finished */ 33 int finished; member in struct:enc_struct 164 ctx->finished = 1; 315 ctx->finished = 0; 352 if (!ctx->finished) { 353 ctx->finished = 1;
|
| bio_ok.c | 104 int cont; /* <= 0 when finished */ 105 int finished; member in struct:ok_struct 337 ctx->finished = 0; 368 ctx->finished = 1;
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| bio_enc.c | 32 int cont; /* <= 0 when finished */ 33 int finished; member in struct:enc_struct 312 ctx->finished = 0; 349 if (!ctx->finished) { 350 ctx->finished = 1;
|
| bio_ok.c | 103 int cont; /* <= 0 when finished */ 104 int finished; member in struct:ok_struct 340 ctx->finished = 0; 371 ctx->finished = 1;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| bio_enc.c | 30 int cont; /* <= 0 when finished */ 31 int finished; member in struct:enc_struct 312 ctx->finished = 0; 349 if (!ctx->finished) { 350 ctx->finished = 1;
|
| bio_ok.c | 102 int cont; /* <= 0 when finished */ 103 int finished; member in struct:ok_struct 341 ctx->finished = 0; 372 ctx->finished = 1;
|
| /src/external/bsd/openldap/dist/servers/lloadd/ |
| backend.c | 401 int finished = 0; local 404 if ( (finished = tier->t_type.tier_select( 410 return finished; 510 (what & EV_TIMEOUT) ? "retry timeout finished, " : "", 605 * if upstream_name_cb finished and scheduled another one */ 650 * it's finished yet.
|
| /src/external/bsd/wpa/dist/src/eapol_auth/ |
| eapol_auth_sm.h | 49 bool (*finished)(void *ctx, void *sta_ctx, int success, int preauth, member in struct:eapol_auth_cb
|
| /src/external/gpl3/gdb.old/dist/gdb/cli/ |
| cli-utils.c | 326 number_or_range_parser::finished () const function in class:number_or_range_parser 328 /* Parsing is finished when at end of string or null string, 354 if (parser.finished ()) 356 while (!parser.finished ())
|
| /src/external/gpl3/gdb/dist/gdb/cli/ |
| cli-utils.c | 326 number_or_range_parser::finished () const function in class:number_or_range_parser 328 /* Parsing is finished when at end of string or null string, 354 if (parser.finished ()) 356 while (!parser.finished ())
|
| /src/external/bsd/zstd/dist/contrib/pzstd/ |
| Options.cpp | 191 bool finished = false; local 192 while (!finished && *options != 0) { 208 finished = true; 228 finished = true; 285 if (!finished) {
|
| /src/external/bsd/nsd/dist/ |
| lookup3.c | 883 uint32_t finished=1; local 902 if (e[l]|f[l]|g[l]|h[l]|x[l]|y[l]) finished=0; 904 if (finished) break;
|
| /src/external/bsd/ppp/dist/pppd/ |
| fsm.h | 110 void (*finished)(fsm *); /* Called when we don't want the lower layer */ member in struct:fsm_callbacks
|