Searched refs:lh (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-11-stable/crypto/openssl/crypto/lhash/
H A Dlhash.c129 static int expand(_LHASH *lh);
130 static void contract(_LHASH *lh);
131 static LHASH_NODE **getrn(_LHASH *lh, const void *data, unsigned long *rhash);
176 void lh_free(_LHASH *lh) argument
181 if (lh == NULL)
184 for (i = 0; i < lh->num_nodes; i++) {
185 n = lh->b[i];
192 OPENSSL_free(lh->b);
193 OPENSSL_free(lh);
196 void *lh_insert(_LHASH *lh, voi argument
232 lh_delete(_LHASH *lh, const void *data) argument
260 lh_retrieve(_LHASH *lh, const void *data) argument
279 doall_util_fn(_LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func, LHASH_DOALL_ARG_FN_TYPE func_arg, void *arg) argument
312 lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func) argument
317 lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg) argument
322 expand(_LHASH *lh) argument
373 contract(_LHASH *lh) argument
409 getrn(_LHASH *lh, const void *data, unsigned long *rhash) argument
474 lh_num_items(const _LHASH *lh) argument
[all...]
H A Dlh_stats.c75 void lh_stats(LHASH *lh, FILE *out) argument
77 fprintf(out, "num_items = %lu\n", lh->num_items);
78 fprintf(out, "num_nodes = %u\n", lh->num_nodes);
79 fprintf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes);
80 fprintf(out, "num_expands = %lu\n", lh->num_expands);
81 fprintf(out, "num_expand_reallocs = %lu\n", lh->num_expand_reallocs);
82 fprintf(out, "num_contracts = %lu\n", lh->num_contracts);
83 fprintf(out, "num_contract_reallocs = %lu\n", lh->num_contract_reallocs);
84 fprintf(out, "num_hash_calls = %lu\n", lh->num_hash_calls);
85 fprintf(out, "num_comp_calls = %lu\n", lh
101 lh_node_stats(LHASH *lh, FILE *out) argument
113 lh_node_usage_stats(LHASH *lh, FILE *out) argument
141 lh_stats(const _LHASH *lh, FILE *fp) argument
154 lh_node_stats(const _LHASH *lh, FILE *fp) argument
167 lh_node_usage_stats(const _LHASH *lh, FILE *fp) argument
182 lh_stats_bio(const _LHASH *lh, BIO *out) argument
209 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
H A Dlhash.h173 # define lh_error(lh) ((lh)->error)
176 void lh_free(_LHASH *lh);
177 void *lh_insert(_LHASH *lh, void *data);
178 void *lh_delete(_LHASH *lh, const void *data);
179 void *lh_retrieve(_LHASH *lh, const void *data);
180 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
181 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
183 unsigned long lh_num_items(const _LHASH *lh);
186 void lh_stats(const _LHASH *lh, FIL
[all...]
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_cache.sh92 $LS -lh $CONF/$FNAME
96 $LS -lh $filename
107 $LS -lh $CONF/$FNAME
112 $LS -lh $filename
/freebsd-11-stable/contrib/ntp/
H A Dbootstrap100 lh=
117 lh="$lh $i"
136 case "$lh" in
138 *) touch $lh
139 echo "Touching <$lh>"
/freebsd-11-stable/crypto/openssl/util/
H A Dmkstack.pl160 #define lh_${type_thing}_insert(lh,inst) LHM_lh_insert(${type_thing},lh,inst)
161 #define lh_${type_thing}_retrieve(lh,inst) LHM_lh_retrieve(${type_thing},lh,inst)
162 #define lh_${type_thing}_delete(lh,inst) LHM_lh_delete(${type_thing},lh,inst)
163 #define lh_${type_thing}_doall(lh,fn) LHM_lh_doall(${type_thing},lh,fn)
164 #define lh_${type_thing}_doall_arg(lh,fn,arg_type,arg) \\
165 LHM_lh_doall_arg(${type_thing},lh,f
[all...]
/freebsd-11-stable/usr.bin/sed/
H A Dcompile.c892 struct labhash **lhp, *lh; local
899 for (lh = *lhp; lh != NULL; lh = lh->lh_next)
900 if (lh->lh_hash == h && strcmp(cp->t, lh->lh_cmd->t) == 0)
902 if ((lh = malloc(sizeof *lh)) == NULL)
904 lh
918 struct labhash *lh; local
940 struct labhash *lh, *next; local
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dpap.c88 struct fsmheader lh; local
100 lh.code = PAP_REQUEST;
101 lh.id = authp->id;
102 lh.length = htons(plen + sizeof(struct fsmheader));
104 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader)); local
118 struct fsmheader lh; local
123 lh.code = code;
124 lh.id = authp->id;
127 lh.length = htons(plen + sizeof(struct fsmheader));
129 memcpy(MBUF_CTOP(bp), &lh, sizeo local
[all...]
H A Dfsm.c194 struct fsmheader lh; local
213 lh.code = code;
214 lh.id = id;
215 lh.length = htons(plen);
217 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader)); local
1049 struct fsmheader lh; local
1057 bp = mbuf_Read(bp, &lh, sizeof lh);
1059 if (ntohs(lh.length) > len) {
1061 "- dropped\n", fp->link->name, len, (int)ntohs(lh
[all...]
/freebsd-11-stable/crypto/openssl/crypto/stack/
H A Dsafestack.h2449 # define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
2450 # define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
2451 # define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst)
2452 # define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2453 # define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2454 LHM_lh_doall_arg(ADDED_OBJ,lh,f
[all...]
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_types.h185 int16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon4779::__anon4780
188 uint16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon4779::__anon4781
198 uint16_t ll; uint16_t lh; uint16_t hl; int16_t hh;
201 uint16_t ll; uint16_t lh; uint16_t hl; uint16_t hh;
/freebsd-11-stable/include/rpcsvc/
H A Dbootparam_prot.x69 char lh;
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec2_smpl.c608 BIGNUM *lh, *y2; local
631 lh = BN_CTX_get(ctx);
632 if (lh == NULL)
641 if (!BN_GF2m_add(lh, &point->X, &group->a))
643 if (!field_mul(group, lh, lh, &point->X, ctx))
645 if (!BN_GF2m_add(lh, lh, &point->Y))
647 if (!field_mul(group, lh, lh,
[all...]
/freebsd-11-stable/usr.sbin/bootparamd/bootparamd/
H A Dbootparamd.c57 255 & whoami->client_address.bp_address_u.ip_addr.lh,
63 255 & whoami->client_address.bp_address_u.ip_addr.lh,
92 255 & res.router_address.bp_address_u.ip_addr.lh,
100 255 & res.router_address.bp_address_u.ip_addr.lh,
162 255 & res.server_address.bp_address_u.ip_addr.lh,
169 255 & res.server_address.bp_address_u.ip_addr.lh,
/freebsd-11-stable/sys/riscv/riscv/
H A Dbus_space_asm.S47 lh a0, 0(a3)
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2read.c733 static void free_line_header (struct line_header *lh);
5113 free_line_header (struct line_header *lh) argument
5115 if (lh->standard_opcode_lengths)
5116 xfree (lh->standard_opcode_lengths);
5118 /* Remember that all the lh->file_names[i].name pointers are
5120 if (lh->file_names)
5121 xfree (lh->file_names);
5124 if (lh->include_dirs)
5125 xfree (lh->include_dirs);
5127 xfree (lh);
5133 add_include_dir(struct line_header *lh, char *include_dir) argument
5156 add_file_name(struct line_header *lh, char *name, unsigned int dir_index, unsigned int mod_time, unsigned int length) argument
5199 struct line_header *lh; local
5344 dwarf_decode_lines(struct line_header *lh, char *comp_dir, bfd *abfd, struct dwarf2_cu *cu) argument
7698 file_full_name(int file, struct line_header *lh, const char *comp_dir) argument
7731 macro_start_file(int file, int line, struct macro_source_file *current_file, const char *comp_dir, struct line_header *lh, struct objfile *objfile) argument
7930 dwarf_decode_macros(struct line_header *lh, unsigned int offset, char *comp_dir, bfd *abfd, struct dwarf2_cu *cu) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_cm.c417 struct list_head lh; local
422 INIT_LIST_HEAD(&lh);
447 list_splice_init(&dev->sriov.cm_list, &lh);
456 list_move_tail(&ent->list, &lh);
459 list_for_each_entry_safe(map, tmp_map, &lh, list) {
467 list_move_tail(&map->list, &lh);
474 list_for_each_entry_safe(map, tmp_map, &lh, list) {
/freebsd-11-stable/contrib/binutils/bfd/
H A Ddwarf2.c975 struct line_head lh; local
1029 lh.total_length = read_4_bytes (abfd, line_ptr);
1032 if (lh.total_length == 0xffffffff)
1034 lh.total_length = read_8_bytes (abfd, line_ptr);
1038 else if (lh.total_length == 0 && unit->addr_size == 8)
1041 lh.total_length = read_4_bytes (abfd, line_ptr);
1045 line_end = line_ptr + lh.total_length;
1046 lh.version = read_2_bytes (abfd, line_ptr);
1049 lh.prologue_length = read_4_bytes (abfd, line_ptr);
1051 lh
[all...]
/freebsd-11-stable/crypto/openssl/crypto/txt_db/
H A Dtxt_db.c207 LHASH_OF(OPENSSL_STRING) *lh;
213 lh = db->index[idx];
214 if (lh == NULL) {
218 ret = lh_OPENSSL_STRING_retrieve(lh, value);
/freebsd-11-stable/sys/dev/pms/freebsd/driver/common/
H A Dlxencrypt.c329 struct list_head *lh; local
341 lh = MAP_TABLE_ENTRY(pCard, chan, device, lun);
342 if(lh) {
343 list_for_each_entry(p, lh, list) {
481 struct list_head *lh; local
528 lh = MAP_TABLE_ENTRY(pCard, chan, device, lun);
533 list_for_each_entry_safe(p, n, lh, list) {
568 list_for_each_entry(n, lh, list) {
582 list_add(&p->list, lh);
697 struct list_head *lh; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/engine/
H A Deng_table.c116 LHASH_OF(ENGINE_PILE) *lh;
122 if ((lh = lh_ENGINE_PILE_new()) == NULL)
124 *t = (ENGINE_TABLE *)lh;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlparser.c1107 static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) { argument
1111 for (; lh; lh = lh->prev) { /* check all previous assignments */
1112 if (lh->v.k == VINDEXED) { /* assigning to a table? */
1114 if (lh->v.u.ind.vt == v->k && lh->v.u.ind.t == v->u.info) {
1116 lh->v.u.ind.vt = VLOCAL;
1117 lh->v.u.ind.t = extra; /* previous assignment will use safe copy */
1120 if (v->k == VLOCAL && lh
1135 assignment(LexState *ls, struct LHS_assign *lh, int nvars) argument
[all...]
/freebsd-11-stable/contrib/lua/src/
H A Dlparser.c1119 static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) { argument
1123 for (; lh; lh = lh->prev) { /* check all previous assignments */
1124 if (lh->v.k == VINDEXED) { /* assigning to a table? */
1126 if (lh->v.u.ind.vt == v->k && lh->v.u.ind.t == v->u.info) {
1128 lh->v.u.ind.vt = VLOCAL;
1129 lh->v.u.ind.t = extra; /* previous assignment will use safe copy */
1132 if (v->k == VLOCAL && lh
1147 assignment(LexState *ls, struct LHS_assign *lh, int nvars) argument
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c743 dt_ahashent_t *lh = *((dt_ahashent_t **)lhs); local
745 dtrace_aggdesc_t *lagg = lh->dtahe_data.dtada_desc;
760 dt_ahashent_t *lh = *((dt_ahashent_t **)lhs); local
764 lid = dt_aggregate_aggvarid(lh);
779 dt_ahashent_t *lh = *((dt_ahashent_t **)lhs); local
781 dtrace_aggdesc_t *lagg = lh->dtahe_data.dtada_desc;
805 ldata = lh->dtahe_data.dtada_data + lrec->dtrd_offset;
890 dt_ahashent_t *lh = *((dt_ahashent_t **)lhs); local
892 dtrace_aggdesc_t *lagg = lh->dtahe_data.dtada_desc;
894 caddr_t ldata = lh
1032 dt_ahashent_t **lh = *((dt_ahashent_t ***)lhs); local
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/riscv/
H A Ddtrace_asm.S86 lh a0, 0(a0)

Completed in 333 milliseconds

12