Home
last modified time | relevance | path

Searched refs:hb (Results 1 – 25 of 38) sorted by relevance

12

/kernel/linux/linux-5.10/include/linux/
Dhdlcdrv.h158 static inline int hdlcdrv_hbuf_full(struct hdlcdrv_hdlcbuffer *hb) in hdlcdrv_hbuf_full() argument
163 spin_lock_irqsave(&hb->lock, flags); in hdlcdrv_hbuf_full()
164 ret = !((HDLCDRV_HDLCBUFFER - 1 + hb->rd - hb->wr) % HDLCDRV_HDLCBUFFER); in hdlcdrv_hbuf_full()
165 spin_unlock_irqrestore(&hb->lock, flags); in hdlcdrv_hbuf_full()
171 static inline int hdlcdrv_hbuf_empty(struct hdlcdrv_hdlcbuffer *hb) in hdlcdrv_hbuf_empty() argument
176 spin_lock_irqsave(&hb->lock, flags); in hdlcdrv_hbuf_empty()
177 ret = (hb->rd == hb->wr); in hdlcdrv_hbuf_empty()
178 spin_unlock_irqrestore(&hb->lock, flags); in hdlcdrv_hbuf_empty()
184 static inline unsigned short hdlcdrv_hbuf_get(struct hdlcdrv_hdlcbuffer *hb) in hdlcdrv_hbuf_get() argument
190 spin_lock_irqsave(&hb->lock, flags); in hdlcdrv_hbuf_get()
[all …]
/kernel/linux/linux-5.10/kernel/power/
Dswap.c232 static void hib_init_batch(struct hib_bio_batch *hb) in hib_init_batch() argument
234 atomic_set(&hb->count, 0); in hib_init_batch()
235 init_waitqueue_head(&hb->wait); in hib_init_batch()
236 hb->error = BLK_STS_OK; in hib_init_batch()
237 blk_start_plug(&hb->plug); in hib_init_batch()
240 static void hib_finish_batch(struct hib_bio_batch *hb) in hib_finish_batch() argument
242 blk_finish_plug(&hb->plug); in hib_finish_batch()
247 struct hib_bio_batch *hb = bio->bi_private; in hib_end_io() local
262 if (bio->bi_status && !hb->error) in hib_end_io()
263 hb->error = bio->bi_status; in hib_end_io()
[all …]
/kernel/linux/linux-5.10/kernel/
Dfutex.c319 static inline void hb_waiters_inc(struct futex_hash_bucket *hb) in hb_waiters_inc() argument
322 atomic_inc(&hb->waiters); in hb_waiters_inc()
334 static inline void hb_waiters_dec(struct futex_hash_bucket *hb) in hb_waiters_dec() argument
337 atomic_dec(&hb->waiters); in hb_waiters_dec()
341 static inline int hb_waiters_pending(struct futex_hash_bucket *hb) in hb_waiters_pending() argument
348 return atomic_read(&hb->waiters); in hb_waiters_pending()
695 static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb, in futex_top_waiter() argument
700 plist_for_each_entry(this, &hb->chain, list) { in futex_top_waiter()
845 struct futex_hash_bucket *hb; in exit_pi_state_list() local
860 hb = hash_futex(&key); in exit_pi_state_list()
[all …]
/kernel/linux/linux-5.10/arch/arm/boot/dts/
Decx-common.dtsi26 compatible = "calxeda,hb-ahci";
39 compatible = "calxeda,hb-sdhci";
132 compatible = "calxeda,hb-sregs";
147 compatible = "calxeda,hb-pll-clock";
154 compatible = "calxeda,hb-pll-clock";
161 compatible = "calxeda,hb-a9periph-clock";
168 compatible = "calxeda,hb-a9bus-clock";
175 compatible = "calxeda,hb-pll-clock";
182 compatible = "calxeda,hb-emmc-clock";
204 compatible = "calxeda,hb-xgmac";
[all …]
Dhighbank.dts108 compatible = "calxeda,hb-ddr-ctrl";
150 compatible = "calxeda,hb-sregs-l2-ecc";
/kernel/linux/linux-5.10/tools/perf/ui/browsers/
Dhists.c51 static void hist_browser__update_nr_entries(struct hist_browser *hb);
56 static bool hist_browser__has_filter(struct hist_browser *hb) in hist_browser__has_filter() argument
58 return hists__has_filter(hb->hists) || hb->min_pcnt || symbol_conf.has_filter || hb->c2c_filter; in hist_browser__has_filter()
79 static void hist_browser__set_title_space(struct hist_browser *hb) in hist_browser__set_title_space() argument
81 struct ui_browser *browser = &hb->b; in hist_browser__set_title_space()
82 struct hists *hists = hb->hists; in hist_browser__set_title_space()
85 browser->extra_title_lines = hb->show_headers ? hpp_list->nr_header_lines : 0; in hist_browser__set_title_space()
88 static u32 hist_browser__nr_entries(struct hist_browser *hb) in hist_browser__nr_entries() argument
93 nr_entries = hb->nr_hierarchy_entries; in hist_browser__nr_entries()
94 else if (hist_browser__has_filter(hb)) in hist_browser__nr_entries()
[all …]
/kernel/linux/linux-5.10/drivers/staging/vt6655/
Dtmacro.h39 #define MAKEWORD(lb, hb) ((unsigned short)(((unsigned char)(lb)) | (((unsigned short)((unsigned … argument
/kernel/liteos_m/
DMakefile38 $(foreach line,$(shell hb env | sed 's/\[OHOS INFO\]/ohos/g;s/ /_/g;s/:_/=/g' || true),$(eval $(lin…
101 $(HIDE)hb build -f --gn-args "liteos_kernel_only=true liteos_name=\"$(LITEOS_TARGET)\""
116 $(HIDE)hb clean
/kernel/linux/linux-5.10/drivers/net/ethernet/pensando/ionic/
Dionic_dev.c17 int hb; in ionic_watchdog_cb() local
25 hb = ionic_heartbeat_check(ionic); in ionic_watchdog_cb()
27 if (hb >= 0) in ionic_watchdog_cb()
110 u32 hb; in ionic_heartbeat_check() local
161 hb = ioread32(&idev->dev_info_regs->fw_heartbeat); in ionic_heartbeat_check()
162 if (!hb) in ionic_heartbeat_check()
166 if (hb == idev->last_hb) { in ionic_heartbeat_check()
178 dev_info(ionic->dev, "FW heartbeat restored at %d\n", hb); in ionic_heartbeat_check()
180 idev->last_hb = hb; in ionic_heartbeat_check()
Dionic_main.c327 int hb = 0; in ionic_dev_cmd_wait() local
348 hb = ionic_heartbeat_check(ionic); in ionic_dev_cmd_wait()
349 } while (!done && !hb && time_before(jiffies, max_wait)); in ionic_dev_cmd_wait()
356 if (!done && hb) { in ionic_dev_cmd_wait()
/kernel/linux/linux-5.10/drivers/atm/
Dnicstar.c200 struct sk_buff *hb; in nicstar_remove_one() local
225 while ((hb = skb_dequeue(&card->hbpool.queue)) != NULL) { in nicstar_remove_one()
226 dev_kfree_skb_any(hb); in nicstar_remove_one()
655 struct sk_buff *hb; in ns_init_card() local
656 hb = __dev_alloc_skb(NS_HBUFSIZE, GFP_KERNEL); in ns_init_card()
657 if (hb == NULL) { in ns_init_card()
665 NS_PRV_BUFTYPE(hb) = BUF_NONE; in ns_init_card()
666 skb_queue_tail(&card->hbpool.queue, hb); in ns_init_card()
835 struct sk_buff *hb; in ns_init_card_error() local
836 while ((hb = skb_dequeue(&card->hbpool.queue)) != NULL) in ns_init_card_error()
[all …]
/kernel/linux/linux-5.10/tools/memory-model/
Dlinux-kernel.cat86 let hb = [Marked] ; (ppo | rfe | ((prop \ id) & int)) ; [Marked]
87 acyclic hb as happens-before
94 let pb = prop ; strong-fence ; hb* ; [Marked]
121 let rcu-link = po? ; hb* ; pb* ; prop ; po
146 let rb = prop ; rcu-fence ; hb* ; pb* ; [Marked]
155 * let xb = hb | pb | rb
169 let xbstar = (hb | pb | rb)*
Dlinux-kernel.cfg17 edgeattr hb,color,indigo
/kernel/linux/linux-5.10/drivers/scsi/
Dconstants.c416 int hb = host_byte(result); in scsi_hostbyte_string() local
418 if (hb < ARRAY_SIZE(hostbyte_table)) in scsi_hostbyte_string()
419 hb_string = hostbyte_table[hb]; in scsi_hostbyte_string()
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
Dvmwgfx_msg.c149 const char *msg, bool hb) in vmw_port_hb_out() argument
155 if (hb && !mem_encrypt_active()) { in vmw_port_hb_out()
205 unsigned long reply_len, bool hb) in vmw_port_hb_in() argument
210 if (hb && !mem_encrypt_active()) { in vmw_port_hb_in()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/media/i2c/
Dov7670.txt21 - ov7670,pclk-hb-disable: a boolean property to suppress pixel clock output
44 ov7670,pclk-hb-disable;
/kernel/linux/linux-5.10/net/ipv4/
Dtcp_metrics.c754 struct tcpm_hash_bucket *hb = tcp_metrics_hash + row; in tcp_metrics_nl_dump() local
757 for (col = 0, tm = rcu_dereference(hb->chain); tm; in tcp_metrics_nl_dump()
878 struct tcpm_hash_bucket *hb = tcp_metrics_hash; in tcp_metrics_flush_all() local
882 for (row = 0; row < max_rows; row++, hb++) { in tcp_metrics_flush_all()
887 pp = &hb->chain; in tcp_metrics_flush_all()
904 struct tcpm_hash_bucket *hb; in tcp_metrics_nl_cmd_del() local
926 hb = tcp_metrics_hash + hash; in tcp_metrics_nl_cmd_del()
927 pp = &hb->chain; in tcp_metrics_nl_cmd_del()
/kernel/linux/linux-5.10/drivers/media/i2c/
Dmt9v111.c461 unsigned int hb; in mt9v111_calc_frame_rate() local
492 best_fps = vb = hb = 0; in mt9v111_calc_frame_rate()
500 for (hb = MT9V111_CORE_R05_MIN_HBLANK; in mt9v111_calc_frame_rate()
501 hb < MT9V111_CORE_R05_MAX_HBLANK; hb += 10) { in mt9v111_calc_frame_rate()
502 unsigned int t_frame = (row_pclk + hb) * in mt9v111_calc_frame_rate()
520 ret = v4l2_ctrl_s_ctrl_int64(mt9v111->hblank, hb); in mt9v111_calc_frame_rate()
/kernel/linux/linux-5.10/drivers/hwmon/
Dw83773g.c56 static inline long temp_of_remote(s8 hb, u8 lb) in temp_of_remote() argument
58 return (hb << 3 | lb >> 5) * 125; in temp_of_remote()
/kernel/linux/linux-5.10/lib/zstd/
Dhuf.h83 U32 name##hb[maxSymbolValue + 1]; \
84 void *name##hv = &(name##hb); \
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/
Ddt2801.c248 int hb = 0; in dt2801_readdata2() local
254 ret = dt2801_readdata(dev, &hb); in dt2801_readdata2()
258 *data = (hb << 8) + lb; in dt2801_readdata2()
/kernel/linux/linux-5.10/drivers/staging/nvec/
DREADME13 [1] e.g. https://nv-tegra.nvidia.com/gitweb/?p=linux-2.6.git;a=tree;f=arch/arm/mach-tegra/nvec;hb=a…
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/fpga/
Daltera-passive-serial.txt8 See https://www.altera.com/literature/hb/cyc/cyc_c51013.pdf
/kernel/linux/linux-5.10/arch/mips/kernel/
Dcps-vec.S243 jr.hb t1
398 jr.hb t1
512 1: jr.hb t0
Dhead.S169 jr.hb v0

12