Home
last modified time | relevance | path

Searched refs:hbp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/wpa/src/wps/
H A Dhttpread.c158 char *hbp /* pointer to current line in header buffer */ in httpread_hdr_option_analyze() argument
161 if (word_eq(hbp, "CONTENT-LENGTH:")) { in httpread_hdr_option_analyze()
162 while (isgraph(*hbp)) in httpread_hdr_option_analyze()
163 hbp++; in httpread_hdr_option_analyze()
164 while (*hbp == ' ' || *hbp == '\t') in httpread_hdr_option_analyze()
165 hbp++; in httpread_hdr_option_analyze()
166 if (!isdigit(*hbp)) in httpread_hdr_option_analyze()
168 h->content_length = atol(hbp); in httpread_hdr_option_analyze()
178 if (word_eq(hbp, "TRANSFER_ENCODING:") || in httpread_hdr_option_analyze()
179 word_eq(hbp, "TRANSFER-ENCODING:")) { in httpread_hdr_option_analyze()
[all …]
/freebsd/sys/fs/nfsserver/
H A Dnfs_nfsdcache.c589 struct nfsrchash_bucket *hbp; in nfsrvd_sentcache() local
593 hbp = NFSRCAHASH(rp->rc_sockref); in nfsrvd_sentcache()
594 mtx_lock(&hbp->mtx); in nfsrvd_sentcache()
597 LIST_INSERT_HEAD(&hbp->tbl, rp, rc_ahash); in nfsrvd_sentcache()
599 mtx_unlock(&hbp->mtx); in nfsrvd_sentcache()
792 struct nfsrchash_bucket *hbp; in nfsrc_freecache() local
799 hbp = NFSRCAHASH(rp->rc_sockref); in nfsrc_freecache()
800 mtx_lock(&hbp->mtx); in nfsrc_freecache()
803 mtx_unlock(&hbp->mtx); in nfsrc_freecache()
846 struct nfsrchash_bucket *hbp; in nfsrc_trimcache() local
[all …]
/freebsd/sys/arm/ti/am335x/
H A Dam335x_lcd.c308 uint32_t hbp, hfp, hsw; in am335x_mode_is_valid() local
321 hbp = MODE_HBP(mode) - 1; in am335x_mode_is_valid()
328 if (hbp > 0x3ff) in am335x_mode_is_valid()
618 uint32_t hbp, hfp, hsw; in am335x_lcd_configure() local
692 hbp = sc->sc_panel.panel_hbp - 1; in am335x_lcd_configure()
704 timing0 |= (hbp & 0xff) << RASTER_TIMING_0_HBP_SHIFT; in am335x_lcd_configure()
705 timing2 |= ((hbp >> 8) & 3) << RASTER_TIMING_2_HBPHI_SHIFT; in am335x_lcd_configure()