HomeSort by: relevance | last modified time | path
    Searched defs:nowait (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/uvm/
uvm_amap.c 152 const bool nowait = (flags & UVM_FLAG_NOWAIT) != 0; local
153 const km_flag_t kmflags = nowait ? KM_NOSLEEP : KM_SLEEP;
158 amap = pool_cache_get(&uvm_amap_cache, nowait ? PR_NOWAIT : PR_WAITOK);
216 if (nowait) {
uvm_amap.c 152 const bool nowait = (flags & UVM_FLAG_NOWAIT) != 0; local
153 const km_flag_t kmflags = nowait ? KM_NOSLEEP : KM_SLEEP;
158 amap = pool_cache_get(&uvm_amap_cache, nowait ? PR_NOWAIT : PR_WAITOK);
216 if (nowait) {
  /src/sys/arch/hb68k/pg68k/
pmap_pgmmu.c 141 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap pv_alloc", "nowait");
153 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap enter", "nowait");
280 pmap_pv_alloc(bool nowait)
285 if (nowait) {
292 pv = pool_get(&pmap_pv_pool, nowait ? PR_NOWAIT : 0);
623 pmap_context_new(bool nowait)
639 nowait ? KM_NOSLEEP : KM_SLEEP);
641 if (!nowait) {
657 pmap_context_alloc(pmap_t pmap, bool nowait, struct pmap_completion *pc)
1312 const bool nowait = !!(flags & PMAP_CANFAIL) local
    [all...]
pmap_pgmmu.c 141 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap pv_alloc", "nowait");
153 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap enter", "nowait");
280 pmap_pv_alloc(bool nowait)
285 if (nowait) {
292 pv = pool_get(&pmap_pv_pool, nowait ? PR_NOWAIT : 0);
623 pmap_context_new(bool nowait)
639 nowait ? KM_NOSLEEP : KM_SLEEP);
641 if (!nowait) {
657 pmap_context_alloc(pmap_t pmap, bool nowait, struct pmap_completion *pc)
1312 const bool nowait = !!(flags & PMAP_CANFAIL) local
    [all...]
  /src/external/mpl/dhcp/dist/client/
dhclient.c 105 int nowait = 0; variable
505 nowait = 1;
1061 if (nowait)
1066 if (no_daemon || nowait)
1172 if (nowait)
1177 if (no_daemon || nowait)
dhclient.c 105 int nowait = 0; variable
505 nowait = 1;
1061 if (nowait)
1066 if (no_daemon || nowait)
1172 if (nowait)
1177 if (no_daemon || nowait)
  /src/sys/arch/m68k/m68k/
pmap_68k.c 399 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap pv_alloc", "nowait");
437 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap enter", "nowait");
636 pmap_page_alloc(bool nowait)
640 const int flags = nowait ? UVM_PGA_USERESERVE : 0;
644 if (nowait) {
655 pmap_ptpage_alloc(bool segtab, bool nowait)
664 const int uvm_f_nowait = nowait ? UVM_KMF_NOWAIT : 0;
667 ptp = kmem_zalloc(size, nowait ? KM_NOSLEEP : KM_SLEEP);
681 pg = pmap_page_alloc(nowait);
785 pmap_pv_alloc(bool nowait)
2669 const bool nowait = !!(flags & PMAP_CANFAIL); local
    [all...]
pmap_68k.c 399 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap pv_alloc", "nowait");
437 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap enter", "nowait");
636 pmap_page_alloc(bool nowait)
640 const int flags = nowait ? UVM_PGA_USERESERVE : 0;
644 if (nowait) {
655 pmap_ptpage_alloc(bool segtab, bool nowait)
664 const int uvm_f_nowait = nowait ? UVM_KMF_NOWAIT : 0;
667 ptp = kmem_zalloc(size, nowait ? KM_NOSLEEP : KM_SLEEP);
681 pg = pmap_page_alloc(nowait);
785 pmap_pv_alloc(bool nowait)
2669 const bool nowait = !!(flags & PMAP_CANFAIL); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
openmp.cc 3250 && (m = gfc_match_dupl_check (!c->nowait, "nowait")) != MATCH_NO)
3254 c->nowait = needs_space = true;
7105 bool nowait = false; local
7106 if (gfc_match ("% nowait") == MATCH_YES)
7107 nowait = true;
7110 if (nowait)
7111 gfc_error ("Unexpected junk after NOWAIT clause at %C");
7117 new_st.ext.omp_bool = nowait;
8272 if (omp_clauses->nowait)
    [all...]
openmp.cc 3250 && (m = gfc_match_dupl_check (!c->nowait, "nowait")) != MATCH_NO)
3254 c->nowait = needs_space = true;
7105 bool nowait = false; local
7106 if (gfc_match ("% nowait") == MATCH_YES)
7107 nowait = true;
7110 if (nowait)
7111 gfc_error ("Unexpected junk after NOWAIT clause at %C");
7117 new_st.ext.omp_bool = nowait;
8272 if (omp_clauses->nowait)
    [all...]
gfortran.h 1584 unsigned nowait:1, ordered:1, untied:1, mergeable:1, ancestor:1; member in struct:gfc_omp_clauses
gfortran.h 1584 unsigned nowait:1, ordered:1, untied:1, mergeable:1, ancestor:1; member in struct:gfc_omp_clauses
  /src/external/gpl3/gcc/dist/gcc/
omp-expand.cc 920 bool nowait = omp_find_clause (clauses, OMP_CLAUSE_NOWAIT) != NULL_TREE; local
922 enum built_in_function f = (nowait
10239 /* FIXME: in_reduction(...) nowait is unimplemented yet, pretend
10240 nowait doesn't appear. */
omp-low.cc 3436 "%<nowait%> for construct");
3461 "%<nowait%> sections construct");
3474 "%<nowait%> sections construct");
8473 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
8650 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt),
8652 t = gimple_build_omp_return (nowait);
8669 [ GOMP_barrier (); ] -> unless 'nowait' is present.
8816 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt),
8818 gimple *g = gimple_build_omp_return (nowait);
8907 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt)
8648 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt), local
8814 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt), local
8905 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt), local
    [all...]
omp-expand.cc 920 bool nowait = omp_find_clause (clauses, OMP_CLAUSE_NOWAIT) != NULL_TREE; local
922 enum built_in_function f = (nowait
10239 /* FIXME: in_reduction(...) nowait is unimplemented yet, pretend
10240 nowait doesn't appear. */
omp-low.cc 3436 "%<nowait%> for construct");
3461 "%<nowait%> sections construct");
3474 "%<nowait%> sections construct");
8473 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
8650 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt),
8652 t = gimple_build_omp_return (nowait);
8669 [ GOMP_barrier (); ] -> unless 'nowait' is present.
8816 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt),
8818 gimple *g = gimple_build_omp_return (nowait);
8907 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt)
8648 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt), local
8814 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt), local
8905 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt), local
    [all...]
gimplify.cc 12036 int nowait = -1;
12172 if (nowait == -1)
12173 nowait = omp_find_clause (*list_p,
12175 if (nowait
12181 "with a %<nowait%> clause");
13134 nowait = 1;
14972 bool nowait = false;
14990 nowait = true;
14991 if (nowait && !has_depend)
14994 "%<taskwait%> construct with %<nowait%> clause but no
12033 int nowait = -1; local
14969 bool nowait = false; local
    [all...]
gimplify.cc 12036 int nowait = -1;
12172 if (nowait == -1)
12173 nowait = omp_find_clause (*list_p,
12175 if (nowait
12181 "with a %<nowait%> clause");
13134 nowait = 1;
14972 bool nowait = false;
14990 nowait = true;
14991 if (nowait && !has_depend)
14994 "%<taskwait%> construct with %<nowait%> clause but no
12033 int nowait = -1; local
14969 bool nowait = false; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
openmp.cc 2465 && (m = gfc_match_dupl_check (!c->nowait, "nowait")) != MATCH_NO)
2469 c->nowait = needs_space = true;
6015 bool nowait = false; local
6016 if (gfc_match ("% nowait") == MATCH_YES)
6017 nowait = true;
6020 if (nowait)
6021 gfc_error ("Unexpected junk after NOWAIT clause at %C");
6027 new_st.ext.omp_bool = nowait;
6036 if (gfc_match ("% nowait") == MATCH_YES
    [all...]
openmp.cc 2465 && (m = gfc_match_dupl_check (!c->nowait, "nowait")) != MATCH_NO)
2469 c->nowait = needs_space = true;
6015 bool nowait = false; local
6016 if (gfc_match ("% nowait") == MATCH_YES)
6017 nowait = true;
6020 if (nowait)
6021 gfc_error ("Unexpected junk after NOWAIT clause at %C");
6027 new_st.ext.omp_bool = nowait;
6036 if (gfc_match ("% nowait") == MATCH_YES
    [all...]
gfortran.h 1530 unsigned nowait:1, ordered:1, untied:1, mergeable:1, ancestor:1; member in struct:gfc_omp_clauses
  /src/external/gpl3/gcc.old/dist/gcc/
omp-low.cc 3394 "%<nowait%> for construct");
3419 "%<nowait%> sections construct");
3432 "%<nowait%> sections construct");
8515 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
8692 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt),
8694 t = gimple_build_omp_return (nowait);
8711 [ GOMP_barrier (); ] -> unless 'nowait' is present.
8858 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt),
8860 gimple *g = gimple_build_omp_return (nowait);
8949 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt)
8690 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt), local
8856 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt), local
8947 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt), local
    [all...]
omp-low.cc 3394 "%<nowait%> for construct");
3419 "%<nowait%> sections construct");
3432 "%<nowait%> sections construct");
8515 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
8692 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt),
8694 t = gimple_build_omp_return (nowait);
8711 [ GOMP_barrier (); ] -> unless 'nowait' is present.
8858 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt),
8860 gimple *g = gimple_build_omp_return (nowait);
8949 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt)
8690 bool nowait = omp_find_clause (gimple_omp_sections_clauses (stmt), local
8856 bool nowait = omp_find_clause (gimple_omp_single_clauses (single_stmt), local
8947 bool nowait = omp_find_clause (gimple_omp_scope_clauses (scope_stmt), local
    [all...]
gimplify.cc 9164 int nowait = -1;
9274 if (nowait == -1)
9275 nowait = omp_find_clause (*list_p,
9277 if (nowait
9283 "with a %<nowait%> clause");
10749 nowait = 1;
9161 int nowait = -1; local
gimplify.cc 9164 int nowait = -1;
9274 if (nowait == -1)
9275 nowait = omp_find_clause (*list_p,
9277 if (nowait
9283 "with a %<nowait%> clause");
10749 nowait = 1;
9161 int nowait = -1; local

Completed in 311 milliseconds

1 2