Home
last modified time | relevance | path

Searched refs:lh (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlparser.c912 for (; lh; lh = lh->prev) { in check_conflict()
913 if (lh->v.k == VINDEXED) { in check_conflict()
914 if (lh->v.u.s.info == v->u.s.info) { /* conflict? */ in check_conflict()
918 if (lh->v.u.s.aux == v->u.s.info) { /* conflict? */ in check_conflict()
920 lh->v.u.s.aux = extra; /* previous assignment will use safe copy */ in check_conflict()
931 static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) { in assignment() argument
933 check_condition(ls, VLOCAL <= lh->v.k && lh->v.k <= VINDEXED, in assignment()
937 nv.prev = lh; in assignment()
940 check_conflict(ls, lh, &nv.v); in assignment()
956 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
[all …]
/f-stack/dpdk/drivers/net/octeontx2/
H A Dotx2_lookup.c208 uint8_t lf, lg, lh; in nix_create_tunnel_ptype_array() local
218 lh = (idx & 0xF00) >> 8; in nix_create_tunnel_ptype_array()
234 switch (lh) { in nix_create_tunnel_ptype_array()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlparser.c1116 for (; lh; lh = lh->prev) { /* check all previous assignments */ in check_conflict()
1117 if (lh->v.k == VINDEXED) { /* assigning to a table? */ in check_conflict()
1119 if (lh->v.u.ind.vt == v->k && lh->v.u.ind.t == v->u.info) { in check_conflict()
1121 lh->v.u.ind.vt = VLOCAL; in check_conflict()
1125 if (v->k == VLOCAL && lh->v.u.ind.idx == v->u.info) { in check_conflict()
1140 static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) { in assignment() argument
1142 check_condition(ls, vkisvar(lh->v.k), "syntax error"); in assignment()
1145 nv.prev = lh; in assignment()
1148 check_conflict(ls, lh, &nv.v); in assignment()
1164 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
[all …]
/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-proc.c256 struct list_head *lheads[LHEAD_SIZE], *lh; in taskq_seq_show_impl() local
325 list_for_each(lh, lheads[i]) { in taskq_seq_show_impl()
334 wq = list_entry(lh, in taskq_seq_show_impl()
337 wq = list_entry(lh, in taskq_seq_show_impl()
350 tqe = list_entry(lh, taskq_ent_t, in taskq_seq_show_impl()
H A Dspl-taskq.c332 taskq_find_list(taskq_t *tq, struct list_head *lh, taskqid_t id) in taskq_find_list() argument
337 list_for_each(l, lh) { in taskq_find_list()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzap_leaf.c444 for (uint16_t lh = LEAF_HASH(l, h); lh <= bestlh; lh++) { in zap_leaf_lookup_closest() local
445 for (uint16_t chunk = zap_leaf_phys(l)->l_hash[lh]; in zap_leaf_lookup_closest()
454 ASSERT3U(bestlh, >=, lh); in zap_leaf_lookup_closest()
455 bestlh = lh; in zap_leaf_lookup_closest()
/f-stack/freebsd/net/
H A Dif_spppsubr.c1413 struct lcp_header *lh; in sppp_cp_send() local
1430 lh->type = type; in sppp_cp_send()
1431 lh->ident = ident; in sppp_cp_send()
1434 bcopy (data, lh+1, len); in sppp_cp_send()
1440 sppp_cp_type_name (lh->type), lh->ident, in sppp_cp_send()
1441 ntohs (lh->len)); in sppp_cp_send()
4681 struct lcp_header *lh; in sppp_auth_send() local
4700 lh->type = type; in sppp_auth_send()
4701 lh->ident = id; in sppp_auth_send()
4702 p = (u_char*) (lh+1); in sppp_auth_send()
[all …]
/f-stack/dpdk/drivers/common/octeontx2/hw/
H A Dotx2_npc.h450 uint64_t lh : 12; member
478 uint64_t lh : 20; member
/f-stack/dpdk/drivers/net/ixgbe/
H A Dixgbe_flow.c1505 uint32_t sh, lh, mh; in signature_match() local
1524 lh = sh; in signature_match()
1526 lh = last->thresh; in signature_match()
1530 lh = lh & mh; in signature_match()
1532 if (!sh || sh > lh) in signature_match()