Searched refs:empty (Results 1 - 25 of 178) sorted by relevance

12345678

/linux-master/tools/perf/util/bpf_skel/
H A Dbench_uprobe.bpf.c9 int BPF_UPROBE(empty)
/linux-master/fs/
H A Dbinfmt_elf_test.c6 struct elf_phdr empty[] = { local
40 KUNIT_EXPECT_EQ(test, total_mapping_size(empty, 0), 0);
42 KUNIT_EXPECT_EQ(test, total_mapping_size(empty, 1), 0);
44 KUNIT_EXPECT_EQ(test, total_mapping_size(&empty[1], 1), 0);
46 KUNIT_EXPECT_EQ(test, total_mapping_size(empty, 2), 0);
/linux-master/drivers/net/wireguard/
H A Dqueueing.c51 #define STUB(queue) ((struct sk_buff *)&queue->empty)
60 offsetof(struct sk_buff, next) != offsetof(struct prev_queue, empty.next) -
61 offsetof(struct prev_queue, empty) ||
62 offsetof(struct sk_buff, prev) != offsetof(struct prev_queue, empty.prev) -
63 offsetof(struct prev_queue, empty));
H A Ddevice.h36 struct { struct sk_buff *next, *prev; } empty; // Match first 2 members of struct sk_buff. member in struct:prev_queue
/linux-master/drivers/power/supply/
H A Dapm_power.c120 union power_supply_propval empty; local
175 if (_MPSY_PROP(empty_prop, &empty)) {
177 if (_MPSY_PROP(empty_design_prop, &empty))
178 empty.intval = 0;
190 return -((cur.intval - empty.intval) * 60L) / I.intval;
217 union power_supply_propval empty, full, cur; local
262 if (_MPSY_PROP(empty_prop, &empty)) {
264 if (_MPSY_PROP(empty_design_prop, &empty))
265 empty.intval = 0;
268 if (full.intval - empty
[all...]
H A Dcpcap-battery.c543 *empty, *full; local
576 empty = cpcap_battery_get_empty(ddata);
577 if (empty->voltage && empty->voltage != -1) {
578 empty->voltage = -1;
580 empty->counter_uah - full->counter_uah;
582 empty->voltage = -1;
583 empty->counter_uah =
587 empty = cpcap_battery_get_empty(ddata);
588 memcpy(empty, lates
640 struct cpcap_battery_state_data *latest, *previous, *empty; local
[all...]
/linux-master/tools/objtool/
H A Dorc_gen.c63 bool empty = true; local
82 empty = false;
107 empty = false;
115 if (!empty) {
/linux-master/sound/sh/
H A Dsh_dac_audio.c45 int empty; member in struct:snd_sh_dac
69 chip->empty = 1;
108 chip->empty = 1;
149 chip->empty = 1;
170 if (chip->empty) {
171 chip->empty = 0;
188 if (chip->empty) {
189 chip->empty = 0;
270 if (!chip->empty) {
285 chip->empty
[all...]
/linux-master/tools/testing/ktest/examples/
H A Dtest.conf37 # REBOOT = none, error, fail, empty
39 REBOOT := empty
H A Dkvm.conf37 # REBOOT = none, error, fail, empty
39 REBOOT := empty
H A Dvmware.conf82 # REBOOT = none, error, fail, empty
84 REBOOT := empty
/linux-master/scripts/mod/
H A DMakefile6 always-y += empty.o
25 $(obj)/elfconfig.h: $(obj)/empty.o $(obj)/mk_elfconfig FORCE
/linux-master/lib/
H A Dtest_sysctl.c39 struct ctl_table_header *empty; member in struct:__anon683
227 /* Tets that an empty dir can be created */
233 /* Test that register on top of an empty dir works */
234 sysctl_test_headers.empty
235 = register_sysctl("debug/test_sysctl/empty_add/empty", test_table_empty);
236 if (!sysctl_test_headers.empty)
274 if (sysctl_test_headers.empty)
275 unregister_sysctl_table(sysctl_test_headers.empty);
/linux-master/tools/perf/ui/browsers/
H A Dheader.c17 char empty[] = " "; local
22 str = empty;
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_transport_debug.c49 int head, tail, empty; local
55 empty = csr_ops->read_csr_e_stat(csr, bank->bank_number);
62 seq_printf(sfile, "head %x, tail %x, empty: %d\n",
63 head, tail, (empty & 1 << ring->ring_number)
157 int head, tail, empty; local
166 empty = csr_ops->read_csr_e_stat(csr, bank->bank_number);
169 "ring num %02d, head %04x, tail %04x, empty: %d\n",
171 (empty & 1 << ring->ring_number) >>
/linux-master/include/sound/
H A Dpcm_params.h222 i->empty = 0;
227 i->empty = 1;
238 return i->empty;
291 if (i1->empty)
292 return i2->empty;
293 if (i2->empty)
294 return i1->empty;
/linux-master/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_sdlb.c235 u32 first, u32 next, bool empty)
240 if (empty)
276 bool empty = false; local
286 empty = true;
300 return sparx5_sdlb_group_link(sparx5, group, idx, first, next, empty);
234 sparx5_sdlb_group_link(struct sparx5 *sparx5, u32 group, u32 idx, u32 first, u32 next, bool empty) argument
/linux-master/net/netfilter/ipvs/
H A Dip_vs_dh.c104 bool empty; local
108 empty = list_empty(p);
113 if (empty)
/linux-master/arch/arm/include/debug/
H A Dstm32.S19 #define STM32_USART_TXE (1 << 7) /* Tx data reg empty */
35 tst \rd, #STM32_USART_TXE @ TXE = 1 = tx empty
/linux-master/tools/bpf/bpftool/Documentation/
H A DMakefile6 RMDIR ?= rmdir --ignore-fail-on-non-empty
/linux-master/tools/testing/selftests/proc/
H A DMakefile11 TEST_GEN_PROGS += proc-empty-vm
/linux-master/fs/dlm/
H A Dast.c242 bool empty; local
256 empty = list_empty(&ls->ls_cb_delay);
257 if (empty)
262 if (!empty) {
/linux-master/drivers/misc/mei/
H A Ddma-ring.c212 * mei_dma_ring_empty_slots() - calaculate number of empty slots in dma ring
215 * Return: number of empty slots
220 u32 wr_idx, rd_idx, hbuf_depth, empty; local
234 empty = rd_idx - wr_idx;
236 empty = hbuf_depth - (wr_idx - rd_idx);
238 return empty;
/linux-master/arch/x86/events/amd/
H A Dbrs.c297 goto empty;
303 goto empty;
307 goto empty;
353 empty:
/linux-master/drivers/staging/rtl8712/
H A Drtl8712_efuse.c146 static u8 efuse_is_empty(struct _adapter *adapter, u8 *empty) argument
150 /* read one byte to check if E-Fuse is empty */
153 *empty = true;
155 *empty = false;
485 u8 offset, word_en, empty; local
492 empty = r8712_read8(adapter, EFUSE_CLK_CTRL);
493 if (empty != 0x03)
495 if (efuse_is_empty(adapter, &empty)) {
496 if (empty)
502 if (!empty)
[all...]

Completed in 243 milliseconds

12345678