Home
last modified time | relevance | path

Searched refs:a (Results 326 – 350 of 19688) sorted by relevance

1...<<11121314151617181920>>...788

/openbmc/linux/Documentation/driver-api/dmaengine/
H A Dpxa_dma.rst8 a) Transfers hot queuing
10 is queued even on a running DMA channel.
14 A transfer which is submitted and issued on a phy doesn't wait for a phy to
17 a new transfer.
28 a check of the DMA channel reports a "stopped channel", the transfer should
30 know if a channel is in running or stopped state.
41 a) Virtual channels
42 Same concept as in sa11x0 driver, ie. a driver was assigned a "virtual
61 Transfers a single u32 to a well known dma coherent memory to leave
110 Each time a transfer is completed on a channel, an interrupt might be
[all …]
/openbmc/qemu/tests/tcg/openrisc/
H A Dtest_mul.c5 int a, b, c; in main() local
13 : "=r"(a) in main()
16 if (a != result) { in main()
26 : "=r"(a) in main()
29 if (a != result) { in main()
39 : "=r"(a) in main()
42 if (a != result) { in main()
52 : "=r"(a) in main()
55 if (a != result) { in main()
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A DNEWS.txt7 * Fixed a crash when a short input contains data not valid in
54 a URL or the name of a file on disk (a common beginner's mistake).
152 * Stop a crash when unwisely messing with a tag that's been
353 * Issue a warning if the user tries to use a SoupStrainer in
430 * Fixed a bug that caused a crash when you passed a dictionary as an
580 <a href="foo</a>, </a><a href="bar">baz</a>
581 <a b="<a>">', '<a b="&lt;a&gt;"></a><a>"></a>
597 = 3.0.7a =
624 Added a Tag.decompose() method that completely disconnects a tree or a
754 tags for a parser object by passing them in as a list of
[all …]
/openbmc/u-boot/examples/standalone/
H A Dstubs.c18 #define EXPORT_FUNC(f, a, x, ...) \ argument
31 #define EXPORT_FUNC(f, a, x, ...) \ argument
46 #define EXPORT_FUNC(f, a, x, ...) \ argument
59 #define EXPORT_FUNC(f, a, x, ...) \ argument
76 #define EXPORT_FUNC(f, a, x, ...) \ argument
92 #define EXPORT_FUNC(f, a, x, ...) \ argument
105 #define EXPORT_FUNC(f, a, x, ...) \ argument
121 #define EXPORT_FUNC(f, a, x, ...) \ argument
167 #define EXPORT_FUNC(f, a, x, ...) \ argument
180 #define EXPORT_FUNC(f, a, x, ...) \ argument
[all …]
/openbmc/linux/tools/memory-model/Documentation/
H A Dglossary.txt3 as a way of confirming a diagnosis of OCD), but rather to be searched
15 3 do_something(p->a);
29 a special operation that includes a load and which orders that
47 It is also possible to have a coherence link within a CPU, which
54 Control Dependency: When a later store's execution depends on a test
55 of a value computed from a value returned by an earlier load,
70 name suggests. And in a great many cases, a pair of CPUs is all
110 It is also possible to have a from-reads link within a CPU, which
151 It is also possible to have a reads-from link within a CPU, which
167 a special operation that includes a store and which orders that
[all …]
/openbmc/u-boot/include/
H A Dzfs_common.h37 #define zfs_to_cpu16(x, a) (((a) == BIG_ENDIAN) ? be16_to_cpu(x) \ argument
39 #define cpu_to_zfs16(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be16(x) \ argument
42 #define zfs_to_cpu32(x, a) (((a) == BIG_ENDIAN) ? be32_to_cpu(x) \ argument
44 #define cpu_to_zfs32(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be32(x) \ argument
47 #define zfs_to_cpu64(x, a) (((a) == BIG_ENDIAN) ? be64_to_cpu(x) \ argument
49 #define cpu_to_zfs64(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be64(x) \ argument
/openbmc/linux/include/net/
H A Dcodel.h63 #define MS2TIME(a) ((a * NSEC_PER_MSEC) >> CODEL_SHIFT) argument
76 #define codel_time_after(a, b) \ argument
77 (typecheck(codel_time_t, a) && \
79 ((s32)((a) - (b)) > 0))
80 #define codel_time_before(a, b) codel_time_after(b, a) argument
82 #define codel_time_after_eq(a, b) \ argument
83 (typecheck(codel_time_t, a) && \
85 ((s32)((a) - (b)) >= 0))
86 #define codel_time_before_eq(a, b) codel_time_after_eq(b, a) argument
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/daemontools/daemontools/
H A D0001-Fix-signature-of-main-function.patch29 --- a/src/chkshsgr.c
42 --- a/src/tai64n.c
68 --- a/src/trycpp.c
82 --- a/src/tryflock.c
97 --- a/src/trymkffo.c
110 --- a/src/trypoll.c
125 --- a/src/trysgact.c
140 --- a/src/trysgprm.c
155 --- a/src/tryshsgr.c
181 --- a/src/trywaitp.c
[all …]
/openbmc/qemu/tests/tcg/mips/user/isa/r5900/
H A Dtest_r5900_maddu.c9 uint64_t maddu(uint64_t a, uint32_t rs, uint32_t rt) in maddu() argument
11 uint32_t lo = a; in maddu()
12 uint32_t hi = a >> 32; in maddu()
26 assert(a + (uint64_t)rs * rt == r); in maddu()
32 uint64_t maddu1(uint64_t a, uint32_t rs, uint32_t rt) in maddu1() argument
34 uint32_t lo = a; in maddu1()
35 uint32_t hi = a >> 32; in maddu1()
49 assert(a + (uint64_t)rs * rt == r); in maddu1()
55 static int64_t maddu_variants(int64_t a, int32_t rs, int32_t rt) in maddu_variants() argument
57 int64_t rd = maddu(a, rs, rt); in maddu_variants()
[all …]
/openbmc/linux/Documentation/driver-api/media/
H A Drc-core.rst12 Every time a key is pressed on a remote controller, a scan code is produced.
13 Also, on most hardware, keeping a key pressed for more than a few dozens of
31 The infrared transmission is done by blinking a infrared emitter using a
36 In other words, a typical IR transmission can be viewed as a sequence of
37 *PULSE* and *SPACE* events, each with a given duration.
42 start with a 9ms *PULSE* and a 4.5ms SPACE. It then transmits 16 bits of
43 scan code, being 8 bits for address (usually it is a fixed number for a
53 So, a simple IR receiver hardware will just provide a sequence of timings
56 :c:type:`rc_driver_type`\ [#f2]_. Other hardware come with a
73 When the RC code receives a scan code (either directly, by a driver
[all …]
/openbmc/qemu/include/qemu/
H A Dosdep.h395 #define MIN_INTERNAL(a, b, _a, _b) \ argument
397 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
401 #define MIN(a, b) \ argument
406 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
410 #define MAX(a, b) \ argument
414 # define MIN_CONST(a, b) ((a) < (b) ? (a) : (b)) argument
415 # define MAX_CONST(a, b) ((a) > (b) ? (a) : (b)) argument
420 (a) < (b) ? (a) : (b), \
425 (a) > (b) ? (a) : (b), \
439 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
[all …]
/openbmc/linux/drivers/edac/
H A Di5100_edac.c112 return a >> 15 & 1; in i5100_spddata_rdo()
117 return a >> 13 & 1; in i5100_spddata_sbe()
122 return a >> 12 & 1; in i5100_spddata_busy()
153 return a >> 1 & 1; in i5100_mir_way1()
158 return a & 1; in i5100_mir_way0()
193 return a >> 9 & 1; in i5100_mtr_ethrottle()
198 return a >> 8 & 1; in i5100_mtr_width()
203 return a >> 6 & 1; in i5100_mtr_numbank()
219 return a >> 2 & 1; in i5100_validlog_redmemvalid()
224 return a >> 1 & 1; in i5100_validlog_recmemvalid()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_core_reloc_nesting.c17 int a; member
27 struct core_reloc_nesting_substruct a; member
28 } a; member
42 if (CORE_READ(&out->a.a.a, &in->a.a.a)) in test_core_nesting()
/openbmc/linux/fs/f2fs/
H A Dsysfs.c288 ptr = __struct_ptr(sbi, a->struct_type); in f2fs_sbi_show()
369 ui = (unsigned int *)(ptr + a->offset); in f2fs_sbi_show()
454 ui = (unsigned int *)(ptr + a->offset); in __sbi_store()
748 a->struct_type == GC_THREAD); in f2fs_sbi_store()
754 ret = __sbi_store(a, sbi, buf, count); in f2fs_sbi_store()
768 return a->show ? a->show(a, sbi, buf) : 0; in f2fs_attr_show()
778 return a->store ? a->store(a, sbi, buf, len) : 0; in f2fs_attr_store()
821 if (F2FS_HAS_FEATURE(sbi, a->id)) in f2fs_sb_feature_show()
1276 return a->show ? a->show(a, sbi, buf) : 0; in f2fs_stat_attr_show()
1286 return a->store ? a->store(a, sbi, buf, len) : 0; in f2fs_stat_attr_store()
[all …]
/openbmc/linux/net/appletalk/
H A Daarp.c90 kfree(a); in __aarp_expire()
147 a->xmit_count++; in __aarp_send_query()
382 struct aarp_entry *a = kmalloc(sizeof(*a), GFP_ATOMIC); in aarp_alloc() local
384 if (a) in aarp_alloc()
386 return a; in aarp_alloc()
419 if (a) in aarp_proxy_remove()
631 if (!a) { in aarp_send_ddp()
640 a->dev = dev; in aarp_send_ddp()
768 if (a && a->status & ATIF_PROBE) { in aarp_rcv()
784 if (!a || dev != a->dev) in aarp_rcv()
[all …]
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-fprem.c180 a); in do_fprem()
188 ru.d = fprem(a, b, &sw); in do_fprem()
197 ru.d = fprem1(a, b, &sw); in do_fprem()
210 const long double a = 1.0; in do_fprem_stack_underflow() local
218 : "0" (a) in do_fprem_stack_underflow()
307 INIT_FIELD(a, one), in test_fprem_pairs()
320 do_fprem(a.d, b.d); in test_fprem_pairs()
337 CARRY_INTO(a, mantissa); in test_fprem_pairs()
339 CARRY_INTO(a, one); in test_fprem_pairs()
340 CARRY_INTO(a, exponent); in test_fprem_pairs()
[all …]
/openbmc/qemu/target/loongarch/insn_trans/
H A Dtrans_privileged.c.inc198 csr = get_csr(a->csr);
211 gen_set_gpr(a->rd, dest, EXT_NONE);
223 csr = get_csr(a->csr);
233 src1 = gpr_src(ctx, a->rd, EXT_NONE);
242 gen_set_gpr(a->rd, dest, EXT_NONE);
254 csr = get_csr(a->csr);
269 src1 = gpr_src(ctx, a->rd, EXT_NONE);
270 mask = gpr_src(ctx, a->rj, EXT_NONE);
285 gen_set_gpr(a->rd, oldv, EXT_NONE);
399 switch (a->imm) {
[all …]
/openbmc/rest-dbus/resources/
H A Djsrender.min.js3a,e):a,n),n._d=1),n}function r(e,t){for(var r in t.props)xe.test(r)&&(e[r]=n(e[r],t.props[r]))}fun… function
/openbmc/linux/drivers/dma-buf/heaps/
H A Dsystem_heap.c89 a = kzalloc(sizeof(*a), GFP_KERNEL); in system_heap_attach()
90 if (!a) in system_heap_attach()
95 kfree(a); in system_heap_attach()
99 a->table = table; in system_heap_attach()
124 kfree(a->table); in system_heap_detach()
125 kfree(a); in system_heap_detach()
139 a->mapped = true; in system_heap_map_dma_buf()
165 if (!a->mapped) in system_heap_dma_buf_begin_cpu_access()
167 dma_sync_sgtable_for_cpu(a->dev, a->table, direction); in system_heap_dma_buf_begin_cpu_access()
186 if (!a->mapped) in system_heap_dma_buf_end_cpu_access()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/websocketpp/websocketpp-0.8.2/
H A D1024.patch89 --- a/examples/dev/SConscript
342 --- a/test/connection/SConscript
355 --- a/test/endpoint/SConscript
368 --- a/test/extension/SConscript
381 --- a/test/http/SConscript
394 --- a/test/logger/SConscript
420 --- a/test/processors/SConscript
433 --- a/test/random/SConscript
446 --- a/test/roles/SConscript
459 --- a/test/transport/SConscript
[all …]
/openbmc/u-boot/arch/arc/include/asm/
H A Dio.h226 #define in_arch(type, endian, a) endian##_to_cpu(__raw_read##type(a)) argument
228 #define out_le32(a, v) out_arch(l, le32, a, v) argument
229 #define out_le16(a, v) out_arch(w, le16, a, v) argument
231 #define in_le32(a) in_arch(l, le32, a) argument
232 #define in_le16(a) in_arch(w, le16, a) argument
234 #define out_be32(a, v) out_arch(l, be32, a, v) argument
235 #define out_be16(a, v) out_arch(w, be16, a, v) argument
237 #define in_be32(a) in_arch(l, be32, a) argument
238 #define in_be16(a) in_arch(w, be16, a) argument
240 #define out_8(a, v) __raw_writeb(v, a) argument
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dbootstrap-3.4.1.min.js6a=function(t){s(t).on("click",e,this.close)};a.VERSION="3.4.1",a.TRANSITION_DURATION=150,a.prototy… function
/openbmc/linux/tools/include/linux/
H A Doverflow.h44 #define check_add_overflow(a, b, d) ({ \ argument
45 typeof(a) __a = (a); \
53 #define check_sub_overflow(a, b, d) ({ \ argument
54 typeof(a) __a = (a); \
62 #define check_mul_overflow(a, b, d) ({ \ argument
63 typeof(a) __a = (a); \
82 static inline __must_check size_t array_size(size_t a, size_t b) in array_size() argument
86 if (check_mul_overflow(a, b, &bytes)) in array_size()
104 static inline __must_check size_t array3_size(size_t a, size_t b, size_t c) in array3_size() argument
108 if (check_mul_overflow(a, b, &bytes)) in array3_size()
/openbmc/linux/drivers/gpu/drm/radeon/
H A Drs690.c278 fixed20_12 a, b, c; in rs690_crtc_bandwidth_compute() local
302 a.full = dfixed_const(16); in rs690_crtc_bandwidth_compute()
312 a.full = dfixed_div(b, c); in rs690_crtc_bandwidth_compute()
329 a.full = dfixed_div(a, b); in rs690_crtc_bandwidth_compute()
342 a.full = dfixed_const(1); in rs690_crtc_bandwidth_compute()
469 fixed20_12 a, b; in rs690_compute_mode_priority() local
483 a.full += b.full; in rs690_compute_mode_priority()
490 a.full = a.full + b.full; in rs690_compute_mode_priority()
504 a.full = a.full + b.full; in rs690_compute_mode_priority()
538 a.full = a.full + b.full; in rs690_compute_mode_priority()
[all …]
/openbmc/qemu/target/riscv/
H A Dtranslate.c798 TCGv dest = dest_gpr(ctx, a->rd); in gen_logic_imm_fn()
801 func(dest, src1, a->imm); in gen_logic_imm_fn()
819 TCGv dest = dest_gpr(ctx, a->rd); in gen_logic()
847 func(dest, src1, a->imm); in gen_arith_imm_fn()
939 if (a->shamt >= max_len) { in gen_shift_imm_fn()
943 dest = dest_gpr(ctx, a->rd); in gen_shift_imm_fn()
947 func(dest, src1, a->shamt); in gen_shift_imm_fn()
986 if (a->shamt >= max_len) { in gen_shift_imm_tl()
990 dest = dest_gpr(ctx, a->rd); in gen_shift_imm_tl()
996 gen_set_gpr(ctx, a->rd, dest); in gen_shift_imm_tl()
[all …]

1...<<11121314151617181920>>...788