Home
last modified time | relevance | path

Searched refs:num_vars (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data_sprom_subr.c87 size_t num_vars, num_idx; in bhnd_sprom_opcode_init() local
101 num_idx = state->layout->num_vars; in bhnd_sprom_opcode_init()
106 for (num_vars = 0; num_vars < num_idx; num_vars++) { in bhnd_sprom_opcode_init()
116 error = bhnd_sprom_opcode_init_entry(state, &idx[num_vars]); in bhnd_sprom_opcode_init()
H A Dbhnd_nvram_store.c293 if (path->num_vars == SIZE_MAX) { in bhnd_nvstore_parse_data()
298 path->num_vars++; in bhnd_nvstore_parse_data()
322 if (path->num_vars < BHND_NV_IDX_VAR_THRESHOLD) in bhnd_nvstore_parse_data()
331 path->index = bhnd_nvstore_index_new(path->num_vars); in bhnd_nvstore_parse_data()
H A Dbhnd_nvram_storevar.h242 size_t num_vars; /**< per-path count of committed member
H A Dbhnd_nvram_private.h344 uint16_t num_vars; /**< total number of variables defined member
H A Dbhnd_nvram_store_subr.c84 path->num_vars = 0; in bhnd_nvstore_path_new()
H A Dbhnd_nvram_data_sprom.c803 return (sprom->layout->num_vars); in bhnd_nvram_sprom_count()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_csupport.cpp3630 __kmpc_reduce_nowait(ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, in __kmpc_reduce_nowait() argument
3684 loc, global_tid, num_vars, reduce_size, reduce_data, reduce_func, lck); in __kmpc_reduce_nowait()
3859 kmp_int32 __kmpc_reduce(ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, in __kmpc_reduce() argument
3897 loc, global_tid, num_vars, reduce_size, reduce_data, reduce_func, lck); in __kmpc_reduce()
H A Dkmp_gsupport.cpp2067 size_t num_vars = (size_t)gomp_data[0]; in KMP_EXPAND_NAME() local
2071 for (size_t j = 0; j < num_vars; ++j) { in KMP_EXPAND_NAME()
2090 for (size_t j = 0; j < num_vars; ++j) { in KMP_EXPAND_NAME()
H A Dkmp.h4449 ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, size_t reduce_size,
4455 ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, size_t reduce_size,
4464 ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, size_t reduce_size,
H A Dkmp_runtime.cpp8920 ident_t *loc, kmp_int32 global_tid, kmp_int32 num_vars, size_t reduce_size, in __kmp_determine_reduction_method() argument
8999 if (num_vars <= 2) { // && ( team_size <= 8 ) due to false-sharing ??? in __kmp_determine_reduction_method()
9007 if (atomic_available && (num_vars <= 3)) { in __kmp_determine_reduction_method()
/freebsd/contrib/sqlite3/autosetup/
H A Djimsh0.c3679 int num_vars; in Jim_RegexpCmd() local
3754 num_vars = argc - i - 2; in Jim_RegexpCmd()
3757 if (num_vars) { in Jim_RegexpCmd()
3763 num_vars = regex->re_nsub + 1; in Jim_RegexpCmd()
3766 pmatch = Jim_Alloc((num_vars + 1) * sizeof(*pmatch)); in Jim_RegexpCmd()
3786 match = jim_regexec(regex, source_str, num_vars + 1, pmatch, eflags); in Jim_RegexpCmd()
3809 for (i += 2; opt_inline ? j < num_vars : i < argc; i++, j++) { in Jim_RegexpCmd()