Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 1732) sorted by relevance

12345678910>>...70

/linux-3.4.99/arch/ia64/scripts/
Dpvcheck.sed4 s/ssm.*psr\.ic.*/.warning \"ssm psr.ic should not be used directly\"/g
5 s/rsm.*psr\.ic.*/.warning \"rsm psr.ic should not be used directly\"/g
6 s/ssm.*psr\.i.*/.warning \"ssm psr.i should not be used directly\"/g
7 s/rsm.*psr\.i.*/.warning \"rsm psr.i should not be used directly\"/g
8 s/ssm.*psr\.dt.*/.warning \"ssm psr.dt should not be used directly\"/g
9 s/rsm.*psr\.dt.*/.warning \"rsm psr.dt should not be used directly\"/g
10 s/mov.*=.*cr\.ifa/.warning \"cr.ifa should not used directly\"/g
11 s/mov.*=.*cr\.itir/.warning \"cr.itir should not used directly\"/g
12 s/mov.*=.*cr\.isr/.warning \"cr.isr should not used directly\"/g
13 s/mov.*=.*cr\.iha/.warning \"cr.iha should not used directly\"/g
[all …]
/linux-3.4.99/arch/cris/arch-v10/kernel/
Dfasttimer.c513 static unsigned long used; in proc_fasttimer_read() local
517 used = 0; in proc_fasttimer_read()
523 if (!offset || !used) in proc_fasttimer_read()
527 used = 0; in proc_fasttimer_read()
528 used += sprintf(bigbuf + used, "Fast timers added: %i\n", in proc_fasttimer_read()
530 used += sprintf(bigbuf + used, "Fast timers started: %i\n", in proc_fasttimer_read()
532 used += sprintf(bigbuf + used, "Fast timer interrupts: %i\n", in proc_fasttimer_read()
534 used += sprintf(bigbuf + used, "Fast timers expired: %i\n", in proc_fasttimer_read()
536 used += sprintf(bigbuf + used, "Fast timers deleted: %i\n", in proc_fasttimer_read()
538 used += sprintf(bigbuf + used, "Fast timer running: %s\n", in proc_fasttimer_read()
[all …]
/linux-3.4.99/arch/cris/arch-v32/kernel/
Dfasttimer.c485 static unsigned long used; in proc_fasttimer_read() local
490 used = 0; in proc_fasttimer_read()
497 if (!offset || !used) { in proc_fasttimer_read()
500 used = 0; in proc_fasttimer_read()
501 used += sprintf(bigbuf + used, "Fast timers added: %i\n", in proc_fasttimer_read()
503 used += sprintf(bigbuf + used, "Fast timers started: %i\n", in proc_fasttimer_read()
505 used += sprintf(bigbuf + used, "Fast timer interrupts: %i\n", in proc_fasttimer_read()
507 used += sprintf(bigbuf + used, "Fast timers expired: %i\n", in proc_fasttimer_read()
509 used += sprintf(bigbuf + used, "Fast timers deleted: %i\n", in proc_fasttimer_read()
511 used += sprintf(bigbuf + used, "Fast timer running: %s\n", in proc_fasttimer_read()
[all …]
/linux-3.4.99/arch/h8300/kernel/
Dgpio.c57 unsigned char used; member
65 unsigned char *used; in h8300_reserved_gpio() local
69 used = &(gpio_regs[port].used); in h8300_reserved_gpio()
70 if ((*used & bits) != 0) in h8300_reserved_gpio()
72 *used |= bits; in h8300_reserved_gpio()
78 unsigned char *used; in h8300_free_gpio() local
82 used = &(gpio_regs[port].used); in h8300_free_gpio()
83 if ((*used & bits) != bits) in h8300_free_gpio()
85 *used &= (~bits); in h8300_free_gpio()
96 if (gpio_regs[port].used & bit) { in h8300_set_gpio_dir()
[all …]
/linux-3.4.99/crypto/
Dalgif_skcipher.c42 unsigned used; member
61 ctx->used, 0); in skcipher_sndbuf()
99 static void skcipher_pull_sgl(struct sock *sk, int used) in skcipher_pull_sgl() argument
113 int plen = min_t(int, used, sg[i].length); in skcipher_pull_sgl()
121 used -= plen; in skcipher_pull_sgl()
122 ctx->used -= plen; in skcipher_pull_sgl()
137 if (!ctx->used) in skcipher_pull_sgl()
146 skcipher_pull_sgl(sk, ctx->used); in skcipher_free_sgl()
211 if (sk_wait_event(sk, &timeout, ctx->used)) { in skcipher_wait_for_data()
229 if (!ctx->used) in skcipher_data_wakeup()
[all …]
/linux-3.4.99/Documentation/ABI/testing/
Dconfigfs-spear-pcie-gadget7 Interface is used to configure selected dual mode PCIe controller
10 This interfaces can be used to show spear's PCIe device capability.
18 link ... used to enable ltssm and read its status.
19 int_type ...used to configure and read type of supported
21 no_of_msi ... used to configure number of MSI vector needed and
25 vendor_id ... used to write and read vendor id (hex)
26 device_id ... used to write and read device id (hex)
27 bar0_size ... used to write and read bar0_size
28 bar0_address ... used to write and read bar0 mapped area in hex.
29 bar0_rw_offset ... used to write and read offset of bar0 where
[all …]
/linux-3.4.99/sound/oss/dmasound/
Ddmasound_atari.c160 ssize_t count, used; in ata_ct_law() local
166 used = count; in ata_ct_law()
174 *frameUsed += used; in ata_ct_law()
175 return used; in ata_ct_law()
183 ssize_t count, used; in ata_ct_s8() local
189 used = count; in ata_ct_s8()
192 *frameUsed += used; in ata_ct_s8()
193 return used; in ata_ct_s8()
201 ssize_t count, used; in ata_ct_u8() local
206 used = count; in ata_ct_u8()
[all …]
/linux-3.4.99/arch/um/os-Linux/
Dsigio.c40 int used; member
61 n = poll(fds->poll, fds->used, -1); in write_sigio_thread()
68 for (i = 0; i < fds->used; i++) { in write_sigio_thread()
87 fds->used--; in write_sigio_thread()
89 (fds->used - i) * sizeof(*fds->poll)); in write_sigio_thread()
117 memcpy(new, polls->poll, polls->used * sizeof(struct pollfd)); in need_poll()
173 for (i = 0; i < all_sigio_fds.used; i++) { in add_sigio_fd()
177 if (i == all_sigio_fds.used) in add_sigio_fd()
182 for (i = 0; i < current_poll.used; i++) { in add_sigio_fd()
187 n = current_poll.used; in add_sigio_fd()
[all …]
/linux-3.4.99/Documentation/filesystems/
Dufs.txt11 UFS is a file system widely used in different operating systems.
20 44bsd used in FreeBSD, NetBSD, OpenBSD
23 ufs2 used in FreeBSD 5.x
28 sun used in SunOS (Solaris)
31 sunx86 used in SunOS for Intel (Solarisx86)
34 hp used in HP-UX
38 used in NextStep
42 used for NextStep CDROMs (block_size == 2048)
46 used in OpenStep
/linux-3.4.99/Documentation/arm/
DSetup5 structure, otherwise known as 'struct param_struct' which is used
8 This structure is used to pass initialisation parameters from the
32 This is now obsolete, and should not be used.
50 or VGA console character size. They should not be used for any other
61 is otherwise unused. (should not be used for other console types, and
62 should not be used for other purposes).
67 based machines. May be used differently by different architectures.
71 Default sound setting on Acorn machines. May be used differently by
76 Number of ADFS/MFM disks. May be used differently by different
82 These are now obsolete, and should not be used.
[all …]
/linux-3.4.99/drivers/tty/
Dtty_buffer.c66 p->used = 0; in tty_buffer_alloc()
177 t->used = 0; in tty_buffer_find()
214 left = b->size - b->used; in tty_buffer_request_room()
223 b->commit = b->used; in tty_buffer_request_room()
260 memcpy(tb->char_buf_ptr + tb->used, chars, space); in tty_insert_flip_string_fixed_flag()
261 memset(tb->flag_buf_ptr + tb->used, flag, space); in tty_insert_flip_string_fixed_flag()
262 tb->used += space; in tty_insert_flip_string_fixed_flag()
297 memcpy(tb->char_buf_ptr + tb->used, chars, space); in tty_insert_flip_string_flags()
298 memcpy(tb->flag_buf_ptr + tb->used, flags, space); in tty_insert_flip_string_flags()
299 tb->used += space; in tty_insert_flip_string_flags()
[all …]
/linux-3.4.99/scripts/
DMakefile.lib50 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
51 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
52 multi-used := $(multi-used-y) $(multi-used-m)
53 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
57 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
58 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
84 single-used-m := $(addprefix $(obj)/,$(single-used-m))
85 multi-used-y := $(addprefix $(obj)/,$(multi-used-y))
86 multi-used-m := $(addprefix $(obj)/,$(multi-used-m))
160 modname-multi = $(sort $(foreach m,$(multi-used),\
/linux-3.4.99/Documentation/parisc/
Dregisters3 [ an asterisk is used for planned usage which is currently unimplemented ]
9 CR 0 (Recovery Counter) used for ptrace
26 CR26 (TR 2) not used
28 CR28 (TR 4) not used
29 CR29 (TR 5) not used
31 CR31 (TR 7) Temporary register, used in various places
39 SR3 used for userspace accesses (current process)
58 N (Nullify next instruction) used by C code
60 B (Taken Branch) used by C code
62 V (divide step correction) used by C code
[all …]
/linux-3.4.99/kernel/time/
Dtimecompare.c57 int used; in timecompare_offset() local
120 used = counter * 3 / 4; in timecompare_offset()
121 if (!used) in timecompare_offset()
122 used = counter; in timecompare_offset()
123 if (used) { in timecompare_offset()
126 for (index = 0; index < used; index++) in timecompare_offset()
128 *offset = div_s64(off, used); in timecompare_offset()
134 return used; in timecompare_offset()
/linux-3.4.99/drivers/dma/
Ddmaengine.h70 dma_cookie_t used, complete; in dma_cookie_status() local
72 used = chan->cookie; in dma_cookie_status()
77 state->used = used; in dma_cookie_status()
80 return dma_async_is_complete(cookie, complete, used); in dma_cookie_status()
/linux-3.4.99/drivers/video/omap2/displays/
DKconfig10 Supports LCD Panel used in TI SDP3430 and EVM boards,
24 LCD Panel used on the Gumstix Overo Palo35
31 LCD Panel used in TI's SDP3430 and EVM boards
40 used in the Zoom2/3/3630 sdp boards.
46 A mini-projector used in TI's SDP4430 and EVM boards
60 LCD Panel used in OMAP3 Pandora
67 This is the LCD panel used on Nokia N900
74 This is the LCD panel used on Nokia N8x0
/linux-3.4.99/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm/
Di2c.txt13 - clock-frequency : Can be used to set the i2c clock frequency. If
14 unspecified, a default frequency of 60kHz is being used.
15 The following two properties are deprecated. They are only used by legacy
17 - linux,i2c-index : Can be used to hard code an i2c bus number. By default,
19 - linux,i2c-class : Can be used to override the i2c class. The class is used
22 being used. The definition of the classes can be found in
/linux-3.4.99/fs/ubifs/
Dtnc_commit.c420 int lnum, offs, len, next_len, buf_len, buf_offs, used, avail; in layout_in_empty_space() local
432 used = 0; in layout_in_empty_space()
453 used = 0; in layout_in_empty_space()
457 offs = buf_offs + used; in layout_in_empty_space()
500 wlen = used + len; in layout_in_empty_space()
501 used += ALIGN(len, 8); in layout_in_empty_space()
505 buf_offs + used + next_len <= c->leb_size && in layout_in_empty_space()
510 buf_offs + used + next_len <= c->leb_size) in layout_in_empty_space()
520 c->leb_size - buf_offs, blen - used, in layout_in_empty_space()
526 used -= blen; in layout_in_empty_space()
[all …]
/linux-3.4.99/drivers/vhost/
Dvhost.c43 #define vhost_avail_event(vq) ((u16 __user *)&vq->used->ring[vq->num])
165 vq->used = NULL; in vhost_vq_reset()
554 struct vring_used __user *used) in vq_access_ok() argument
560 access_ok(VERIFY_WRITE, used, in vq_access_ok()
561 sizeof *used + num * sizeof *used->ring + s); in vq_access_ok()
588 sizeof *vq->used + in vq_log_access_ok()
589 vq->num * sizeof *vq->used->ring + s)); in vq_log_access_ok()
596 return vq_access_ok(vq->dev, vq->num, vq->desc, vq->avail, vq->used) && in vhost_vq_access_ok()
719 (a.used_user_addr & (sizeof *vq->used->ring - 1)) || in vhost_set_vring()
720 (a.log_guest_addr & (sizeof *vq->used->ring - 1))) { in vhost_set_vring()
[all …]
/linux-3.4.99/drivers/net/wireless/iwlwifi/
Diwl-agn-sta.c45 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) in iwl_sta_ucode_activate()
50 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) { in iwl_sta_ucode_activate()
56 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE; in iwl_sta_ucode_activate()
287 if (!priv->stations[i].used && in iwl_prep_station()
304 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { in iwl_prep_station()
310 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && in iwl_prep_station()
311 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) && in iwl_prep_station()
319 station->used = IWL_STA_DRIVER_ACTIVE; in iwl_prep_station()
378 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { in iwl_add_station_common()
385 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && in iwl_add_station_common()
[all …]
/linux-3.4.99/drivers/gpu/drm/i810/
Di810_dma.c53 int used; in i810_freelist_get() local
61 used = cmpxchg(buf_priv->in_use, I810_BUF_FREE, in i810_freelist_get()
63 if (used == I810_BUF_FREE) in i810_freelist_get()
76 int used; in i810_freelist_put() local
79 used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_FREE); in i810_freelist_put()
80 if (used != I810_BUF_CLIENT) { in i810_freelist_put()
711 struct drm_buf *buf, int discard, int used) in i810_dma_dispatch_vertex() argument
728 if (used > 4 * 1024) in i810_dma_dispatch_vertex()
729 used = 0; in i810_dma_dispatch_vertex()
738 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2))); in i810_dma_dispatch_vertex()
[all …]
/linux-3.4.99/drivers/gpu/drm/savage/
Dsavage_bci.c308 dev_priv->dma_pages[i].used = 0; in savage_dma_init()
327 dev_priv->dma_pages[i].used = 0; in savage_dma_reset()
366 dev_priv->dma_pages[cur].used; in savage_dma_alloc()
373 cur, dev_priv->dma_pages[cur].used, n, rest, nr_pages); in savage_dma_alloc()
377 cur * SAVAGE_DMA_PAGE_SIZE + dev_priv->dma_pages[cur].used; in savage_dma_alloc()
380 dev_priv->dma_pages[cur].used += rest; in savage_dma_alloc()
389 dev_priv->dma_pages[i].used = 0; in savage_dma_alloc()
397 if (dev_priv->dma_pages[i].used) { in savage_dma_alloc()
399 i, dev_priv->dma_pages[i].used); in savage_dma_alloc()
403 dev_priv->dma_pages[i].used = SAVAGE_DMA_PAGE_SIZE; in savage_dma_alloc()
[all …]
/linux-3.4.99/drivers/staging/comedi/drivers/
Dicp_multi.h20 int used; member
135 if ((!inova->used) && (inova->device == device_id) in find_free_pci_card_by_device()
160 if (!(inova->used)) { in find_free_pci_card_by_position()
183 if (inova->used) in pci_card_alloc()
193 inova->used = 1; in pci_card_alloc()
204 if (!inova->used) in pci_card_free()
206 inova->used = 0; in pci_card_free()
228 inova->used); in pci_card_list_display()
/linux-3.4.99/Documentation/input/
Devent-codes.txt3 may be used.
7 used to separate input events into packets of input data changes occurring at
23 type has a set of applicable codes to be used in generating events. See the
96 EV_KEY events take the form KEY_<name> or BTN_<name>. For example, KEY_A is used
100 events have a value of 2. In general, KEY_<name> is used for keyboard keys, and
101 BTN_<name> is used for other types of momentary switch events.
106 - These codes are used in conjunction with input trackpads, tablets, and
107 touchscreens. These devices may be used with fingers, pens, or other tools.
108 When an event occurs and a tool is used, the corresponding BTN_TOOL_<name>
115 BTN_TOUCH is used for touch contact. While an input tool is determined to be
[all …]
/linux-3.4.99/Documentation/sound/alsa/
DAudigy-mixer.txt27 Explanation of used abbreviations:
32 (this standard is used for connecting standalone DAC and ADC converters)
42 This control is used to attenuate samples for left and right front PCM FX-bus
49 This control is used to attenuate samples for left and right surround PCM FX-bus
56 This control is used to attenuate samples for center PCM FX-bus accumulator.
62 This control is used to attenuate sample for LFE PCM FX-bus accumulator.
68 This control is used to attenuate samples for left and right PCM FX-bus
75 This control is used to attenuate samples for left and right PCM FX-bus
82 This control is used to attenuate samples for left and right MIDI FX-bus
88 These controls are used to attenuate samples for left and right MIDI FX-bus
[all …]

12345678910>>...70