/linux-4.1.27/samples/bpf/ |
D | test_maps.c | 35 assert(bpf_update_elem(map_fd, &key, &value, BPF_ANY) == 0); in test_hashmap_sanity() 39 assert(bpf_update_elem(map_fd, &key, &value, BPF_NOEXIST) == -1 && in test_hashmap_sanity() 43 assert(bpf_update_elem(map_fd, &key, &value, -1) == -1 && errno == EINVAL); in test_hashmap_sanity() 46 assert(bpf_lookup_elem(map_fd, &key, &value) == 0 && value == 1234); in test_hashmap_sanity() 50 assert(bpf_lookup_elem(map_fd, &key, &value) == -1 && errno == ENOENT); in test_hashmap_sanity() 53 assert(bpf_update_elem(map_fd, &key, &value, BPF_EXIST) == -1 && in test_hashmap_sanity() 58 assert(bpf_update_elem(map_fd, &key, &value, BPF_NOEXIST) == 0); in test_hashmap_sanity() 64 assert(bpf_update_elem(map_fd, &key, &value, BPF_NOEXIST) == -1 && in test_hashmap_sanity() 68 assert(bpf_delete_elem(map_fd, &key) == -1 && errno == ENOENT); in test_hashmap_sanity() 71 assert(bpf_get_next_key(map_fd, &key, &next_key) == 0 && in test_hashmap_sanity() [all …]
|
D | sockex1_user.c | 24 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, prog_fd, in main() 35 assert(bpf_lookup_elem(map_fd[0], &key, &tcp_cnt) == 0); in main() 38 assert(bpf_lookup_elem(map_fd[0], &key, &udp_cnt) == 0); in main() 41 assert(bpf_lookup_elem(map_fd[0], &key, &icmp_cnt) == 0); in main()
|
D | sock_example.c | 75 assert(bpf_lookup_elem(map_fd, &key, &tcp_cnt) == 0); in test_sock() 78 assert(bpf_lookup_elem(map_fd, &key, &udp_cnt) == 0); in test_sock() 81 assert(bpf_lookup_elem(map_fd, &key, &icmp_cnt) == 0); in test_sock()
|
D | sockex2_user.c | 29 assert(setsockopt(sock, SOL_SOCKET, SO_ATTACH_BPF, prog_fd, in main()
|
/linux-4.1.27/arch/mips/math-emu/ |
D | ieee754sp.c | 40 assert(ieee754sp_isnan(x)); in ieee754sp_issnan() 51 assert(ieee754sp_issnan(r)); in ieee754sp_nanxcpt() 90 assert(xm); /* we don't gen exact zeros (probably should) */ in ieee754sp_format() 92 assert((xm >> (SP_FBITS + 1 + 3)) == 0); /* no execess */ in ieee754sp_format() 93 assert(xm & (SP_HIDDEN_BIT << 3)); in ieee754sp_format() 134 assert((xm & (SP_HIDDEN_BIT << 3)) == 0); in ieee754sp_format() 135 assert(xe == SP_EMIN); in ieee754sp_format() 158 assert((xm >> (SP_FBITS + 1)) == 0); /* no execess */ in ieee754sp_format() 159 assert(xe >= SP_EMIN); in ieee754sp_format() 186 assert(xe == SP_EMIN); in ieee754sp_format() [all …]
|
D | ieee754dp.c | 40 assert(ieee754dp_isnan(x)); in ieee754dp_issnan() 51 assert(ieee754dp_issnan(r)); in ieee754dp_nanxcpt() 90 assert(xm); /* we don't gen exact zeros (probably should) */ in ieee754dp_format() 92 assert((xm >> (DP_FBITS + 1 + 3)) == 0); /* no execess */ in ieee754dp_format() 93 assert(xm & (DP_HIDDEN_BIT << 3)); in ieee754dp_format() 136 assert((xm & (DP_HIDDEN_BIT << 3)) == 0); in ieee754dp_format() 137 assert(xe == DP_EMIN); in ieee754dp_format() 160 assert((xm >> (DP_FBITS + 1)) == 0); /* no execess */ in ieee754dp_format() 161 assert(xe >= DP_EMIN); in ieee754dp_format() 188 assert(xe == DP_EMIN); in ieee754dp_format() [all …]
|
D | ieee754dp.h | 27 #define assert(expr) ((void)0) macro 68 assert((s) == 0 || (s) == 1); in builddp() 69 assert((bx) >= DP_EMIN - 1 + DP_EBIAS in builddp() 71 assert(((m) >> DP_FBITS) == 0); in builddp()
|
D | ieee754sp.h | 27 #define assert(expr) ((void)0) macro 73 assert((s) == 0 || (s) == 1); in buildsp() 74 assert((bx) >= SP_EMIN - 1 + SP_EBIAS in buildsp() 76 assert(((m) >> SP_FBITS) == 0); in buildsp()
|
D | sp_add.c | 121 assert(xm & SP_HIDDEN_BIT); in ieee754sp_add() 122 assert(ym & SP_HIDDEN_BIT); in ieee754sp_add() 143 assert(xe == ye); in ieee754sp_add() 144 assert(xe <= SP_EMAX); in ieee754sp_add()
|
D | sp_sub.c | 124 assert(xm & SP_HIDDEN_BIT); in ieee754sp_sub() 125 assert(ym & SP_HIDDEN_BIT); in ieee754sp_sub() 145 assert(xe == ye); in ieee754sp_sub() 146 assert(xe <= SP_EMAX); in ieee754sp_sub()
|
D | dp_add.c | 121 assert(xm & DP_HIDDEN_BIT); in ieee754dp_add() 122 assert(ym & DP_HIDDEN_BIT); in ieee754dp_add() 145 assert(xe == ye); in ieee754dp_add() 146 assert(xe <= DP_EMAX); in ieee754dp_add()
|
D | dp_sub.c | 127 assert(xm & DP_HIDDEN_BIT); in ieee754dp_sub() 128 assert(ym & DP_HIDDEN_BIT); in ieee754dp_sub() 150 assert(xe == ye); in ieee754dp_sub() 151 assert(xe <= DP_EMAX); in ieee754dp_sub()
|
D | sp_div.c | 118 assert(xm & SP_HIDDEN_BIT); in ieee754sp_div() 119 assert(ym & SP_HIDDEN_BIT); in ieee754sp_div() 144 assert(rm); in ieee754sp_div()
|
D | dp_div.c | 118 assert(xm & DP_HIDDEN_BIT); in ieee754dp_div() 119 assert(ym & DP_HIDDEN_BIT); in ieee754dp_div() 144 assert(rm); in ieee754dp_div()
|
D | sp_mul.c | 117 assert(xm & SP_HIDDEN_BIT); in ieee754sp_mul() 118 assert(ym & SP_HIDDEN_BIT); in ieee754sp_mul() 163 assert(rm & (SP_HIDDEN_BIT << 3)); in ieee754sp_mul()
|
D | dp_mul.c | 117 assert(xm & DP_HIDDEN_BIT); in ieee754dp_mul() 118 assert(ym & DP_HIDDEN_BIT); in ieee754dp_mul() 171 assert(rm & (DP_HIDDEN_BIT << 3)); in ieee754dp_mul()
|
/linux-4.1.27/tools/virtio/ |
D | vringh_test.c | 182 assert(user_addr_offset); in parallel_test() 259 assert(riov.i == riov.used); in parallel_test() 266 assert(wiov.i == wiov.used); in parallel_test() 334 assert(*dbuf == finished - 1); in parallel_test() 336 assert(*dbuf == finished); in parallel_test() 412 assert(*dbuf == finished - 1); in parallel_test() 414 assert(len == 0); in parallel_test() 521 assert(riov.used == 1); in main() 522 assert(riov.iov[0].iov_base == __user_addr_max - 1); in main() 523 assert(riov.iov[0].iov_len == 1); in main() [all …]
|
D | virtio_test.c | 51 assert(r == sizeof v); in vq_notify() 73 assert(r >= 0); in vhost_vq_setup() 76 assert(r >= 0); in vhost_vq_setup() 79 assert(r >= 0); in vhost_vq_setup() 81 assert(r >= 0); in vhost_vq_setup() 84 assert(r >= 0); in vhost_vq_setup() 87 assert(r >= 0); in vhost_vq_setup() 98 assert(r >= 0); in vq_info_add() 105 assert(info->vq); in vq_info_add() 120 assert(dev->buf); in vdev_info_init() [all …]
|
/linux-4.1.27/tools/testing/selftests/vm/ |
D | hugetlbfstest.c | 23 assert(fd > 2); in read_rss() 41 assert(p != MAP_FAILED || in do_mmap() 44 assert(llabs(after - before - length) < 0x40000 || in do_mmap() 49 assert(!ret || !"munmap returned an unexpected error"); in do_mmap() 51 assert(llabs(after - before) < 0x40000 || in do_mmap() 62 assert(fd > 2); in open_file() 65 assert(!err); in open_file()
|
D | thuge-gen.c | 63 assert(g.gl_pathc <= NUM_PAGESIZES); in find_pagesizes() 154 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_mmap() 157 assert(!err); in test_mmap() 186 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_shmget() 189 assert(!err); in test_shmget()
|
/linux-4.1.27/tools/net/ |
D | bpf_jit_disasm.c | 38 assert(path); in get_exec_path() 58 assert(bfdf); in get_asm_insns() 59 assert(bfd_check_format(bfdf, bfd_object)); in get_asm_insns() 70 assert(disassemble); in get_asm_insns() 95 assert(buff && klen); in get_klog_buff() 97 assert(ret >= 0); in get_klog_buff() 123 assert(ret == 0); in get_last_jit_image() 133 assert(off < hlen); in get_last_jit_image() 163 assert(ulen == proglen); in get_last_jit_image()
|
D | bpf_exp.y | 729 assert(labels); in bpf_init() 731 assert(labels_jt); in bpf_init() 733 assert(labels_jf); in bpf_init() 735 assert(labels_k); in bpf_init()
|
/linux-4.1.27/include/net/caif/ |
D | caif_layer.h | 27 #define caif_assert(assert) \ argument 29 if (!(assert)) { \ 30 pr_err("caif:Assert detected:'%s'\n", #assert); \ 31 WARN_ON(!(assert)); \
|
D | caif_spi.h | 66 void (*ss_cb) (bool assert, struct cfspi_ifc *ifc);
|
/linux-4.1.27/drivers/ide/ |
D | cs5520.c | 48 int assert; member 69 (cs5520_pio_clocks[pio].assert)); in cs5520_set_pio_mode() 77 (cs5520_pio_clocks[pio].assert)); in cs5520_set_pio_mode() 81 (cs5520_pio_clocks[pio].assert)); in cs5520_set_pio_mode()
|
/linux-4.1.27/Documentation/devicetree/bindings/pps/ |
D | pps-gpio.txt | 11 - assert-falling-edge: when present, assert is indicated by a falling edge 19 assert-falling-edge;
|
/linux-4.1.27/scripts/dtc/ |
D | treesource.c | 70 assert(str[val.len-1] == '\0'); in write_propval_string() 114 assert(m->offset == (i+1)); in write_propval_string() 132 assert (m->offset == val.len); in write_propval_string() 147 assert(m->offset == ((char *)cp - val.val)); in write_propval_cells() 161 assert (m->offset == val.len); in write_propval_cells() 189 assert (m->offset == val.len); in write_propval_bytes()
|
D | livetree.c | 79 assert(first->next == NULL); in chain_property() 130 assert(node->name == NULL); in name_node() 221 assert(first->next_sibling == NULL); in chain_node() 314 assert(first->next == NULL); in chain_reserve_entry() 376 assert(prop->val.len == sizeof(cell_t)); in propval_cell() 476 assert(label && (strlen(label) > 0)); in get_node_by_label() 495 assert((phandle != 0) && (phandle != -1)); in get_node_by_phandle()
|
D | util.c | 120 assert(endx > x); in get_oct_char() 155 assert(c); in get_escape_char() 424 assert(opts_help[i] != NULL); in util_usage()
|
D | srcpos.c | 105 assert(fp); in fopen_any_on_path() 166 assert(srcfile); in srcfile_pop()
|
D | dtc-lexer.l | 231 assert(filename);
|
D | checks.c | 149 assert(!c->inprogress); in run_check() 382 assert(m->offset == 0); in check_explicit_phandles() 464 assert(m->offset + sizeof(cell_t) <= prop->val.len); in fixup_phandle_references() 488 assert(m->offset <= prop->val.len); in fixup_path_references()
|
D | fdtget.c | 222 assert(property); in show_data_for_item()
|
D | fdtput.c | 252 assert(arg_count >= 2); in do_fdtput()
|
D | flattree.c | 191 assert(off == d.len); in asm_emit_data() 605 assert(((inb->ptr - inb->base) % sizeof(val)) == 0); in flat_read_word()
|
D | dtc-lexer.lex.c_shipped | 2175 assert(filename);
|
/linux-4.1.27/drivers/w1/ |
D | w1_log.h | 28 # define assert(expr) do {} while (0) macro 30 # define assert(expr) \ macro
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-pps | 17 What: /sys/class/pps/ppsX/assert 21 The /sys/class/pps/ppsX/assert file reports the assert events 22 and the assert sequence number of the X-th source in the form: 26 If the source has no assert events the content of this file
|
D | configfs-spear-pcie-gadget | 23 inta ... write 1 to assert INTA and 0 to de-assert.
|
/linux-4.1.27/drivers/reset/sti/ |
D | reset-syscfg.c | 53 unsigned long idx, int assert) in syscfg_reset_program_hw() argument 57 u32 ctrl_val = rst->active_low ? !assert : !!assert; in syscfg_reset_program_hw() 115 .assert = syscfg_reset_assert,
|
/linux-4.1.27/arch/arm/lib/ |
D | bitops.h | 9 strneb r1, [ip] @ assert word-aligned 34 strneb r1, [ip] @ assert word-aligned 64 strneb r1, [ip] @ assert word-aligned 91 strneb r1, [ip] @ assert word-aligned
|
/linux-4.1.27/fs/ocfs2/dlm/ |
D | dlmmaster.c | 1031 int assert, sleep; in dlm_wait_for_lock_mastery() local 1035 assert = 0; in dlm_wait_for_lock_mastery() 1112 assert = 1; in dlm_wait_for_lock_mastery() 1147 if (assert) { in dlm_wait_for_lock_mastery() 1691 struct dlm_assert_master assert; in dlm_do_assert_master() local 1716 memset(&assert, 0, sizeof(assert)); in dlm_do_assert_master() 1717 assert.node_idx = dlm->node_num; in dlm_do_assert_master() 1718 assert.namelen = namelen; in dlm_do_assert_master() 1719 memcpy(assert.name, lockname, namelen); in dlm_do_assert_master() 1720 assert.flags = cpu_to_be32(flags); in dlm_do_assert_master() [all …]
|
D | dlmdomain.c | 930 struct dlm_assert_joined *assert; in dlm_assert_joined_handler() local 933 assert = (struct dlm_assert_joined *) msg->buf; in dlm_assert_joined_handler() 935 mlog(0, "node %u asserts join on domain %s\n", assert->node_idx, in dlm_assert_joined_handler() 936 assert->domain); in dlm_assert_joined_handler() 939 dlm = __dlm_lookup_domain_full(assert->domain, assert->name_len); in dlm_assert_joined_handler() 947 BUG_ON(dlm->joining_node != assert->node_idx); in dlm_assert_joined_handler() 956 set_bit(assert->node_idx, dlm->domain_map); in dlm_assert_joined_handler() 957 clear_bit(assert->node_idx, dlm->exit_domain_map); in dlm_assert_joined_handler() 961 assert->node_idx, dlm->name); in dlm_assert_joined_handler() 965 dlm_hb_event_notify_attached(dlm, assert->node_idx, 1); in dlm_assert_joined_handler()
|
/linux-4.1.27/drivers/ata/ |
D | pata_cs5520.c | 48 int assert; member 79 (cs5520_pio_clocks[pio].assert)); in cs5520_set_timings() 84 (cs5520_pio_clocks[pio].assert)); in cs5520_set_timings() 88 (cs5520_pio_clocks[pio].assert)); in cs5520_set_timings()
|
D | ahci_imx.c | 78 static int imx_phy_crbit_assert(void __iomem *mmio, u32 bit, bool assert) in imx_phy_crbit_assert() argument 86 if (assert) in imx_phy_crbit_assert() 95 if ((assert ? srval : ~srval) & IMX_P0PHYSR_CR_ACK) in imx_phy_crbit_assert()
|
/linux-4.1.27/drivers/clk/qcom/ |
D | reset.c | 24 rcdev->ops->assert(rcdev, id); in qcom_reset() 60 .assert = qcom_reset_assert,
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha_mb_ctx.h | 103 #define assert(expr) \ macro 111 #define assert(expr) do {} while (0) macro
|
D | sha1_mb.c | 174 assert((len % SHA1_BLOCK_SIZE) == 0); in sha1_ctx_mgr_resubmit() 308 assert(ctx->partial_block_buffer_length <= SHA1_BLOCK_SIZE); in sha1_ctx_mgr_submit()
|
/linux-4.1.27/fs/jfs/ |
D | jfs_debug.h | 42 #define assert(p) do { \ macro 55 #define ASSERT(p) assert(p)
|
D | jfs_txnmgr.c | 536 assert(tblk->next == 0); in txEnd() 669 assert(last); in txLock() 888 assert(mp->xflag & COMMIT_PAGE); in txRelease() 933 assert(mp->xflag & COMMIT_PAGE); in txUnlock() 939 assert(mp->nohomeok > 0); in txUnlock() 953 assert(!(tlck->flag & tlckFREEPAGE)); in txUnlock() 1517 assert(tlck->type & tlckEA); in diLog() 2257 assert(mp->xflag & COMMIT_PAGE); in txForce() 2276 assert(mp->nohomeok); in txForce() 2388 assert(mp->nohomeok == 1); in txUpdateMap() [all …]
|
D | jfs_dmap.c | 713 assert(nblocks > 0); in dbAlloc() 1878 assert((blkno & (BPERDMAP - 1)) == 0); in dbAllocCtl() 2004 assert(l2nb <= L2BPERDMAP); in dbAllocDmapLev() 2195 assert(dbitno + nblocks <= BPERDMAP); in dbAllocBits() 2340 assert(dbitno + nblocks <= BPERDMAP); in dbFreeBits() 2625 assert(level == bmp->db_maxlevel); in dbAdjCtl() 2734 assert(leaf[leafno] == NOFREE); in dbBackSplit() 3002 assert(n < 4); in dbFindLeaf() 3038 assert(nb <= DBWORD); in dbFindBits() 3185 assert(0); in blkstol2() [all …]
|
D | jfs_btree.h | 132 assert(!BT_STACK_FULL(BTSTACK));\
|
D | jfs_imap.c | 699 assert(tlck->type & tlckXTREE); in diWrite() 1115 assert(ciagp != NULL); in diFree() 1129 assert(diagp != NULL); in diFree() 1448 assert(rc == -EIO); in diAlloc() 1531 assert(rc == -EIO); in diAlloc() 1570 assert(rc == -EIO); in diAlloc() 2709 assert(start < 32); in diFindFree() 2833 assert(mp->clsn); in diUpdatePMap()
|
D | xattr.c | 168 assert(size <= sizeof (ji->i_inline_ea)); in ea_write_inline() 596 assert(ea_buf->mp); in ea_release() 616 assert(new_size <= sizeof (ji->i_inline_ea)); in ea_put()
|
D | namei.c | 529 assert(!test_cflag(COMMIT_Nolink, ip)); in jfs_unlink() 645 assert(filetype != S_IFDIR); in commitZeroLink() 1184 assert(!test_cflag(COMMIT_Nolink, new_ip)); in jfs_rename()
|
D | jfs_logmgr.c | 1611 assert(list_empty(&log->cqueue)); in jfs_flush_journal() 1945 assert(bp->l_wqnext == NULL); in lbmfree() 2332 assert(bp->l_flag & lbmRELEASE); in lbmIODone() 2333 assert(bp->l_flag & lbmFREE); in lbmIODone()
|
D | jfs_extent.c | 470 assert(lengthPXD(xp) == nbperpage); in extFill()
|
D | jfs_xtree.c | 2673 assert((offset & CM_OFFSET) == 0); in xtRelocate() 2694 assert(addressPXD(&cp->cm_pxd) == sxaddr); in xtRelocate() 2695 assert(!cp->cm_modified); in xtRelocate() 3193 assert(flag != COMMIT_PMAP); in xtTruncate() 3558 assert(prev->next); in xtTruncate()
|
D | jfs_metapage.c | 746 assert(mp->count); in release_metapage()
|
/linux-4.1.27/Documentation/pps/ |
D | pps.txt | 117 signal an assert event (for example in the interrupt handler routine) 143 assert clear echo mode name path subsystem@ uevent 145 Inside each "assert" and "clear" file you can find the timestamp and a 148 $ cat /sys/class/pps/pps0/assert 182 source 0 - assert 1186592699.388832443, sequence: 364 - clear 0.000000000, sequence: 0 183 source 0 - assert 1186592700.388931295, sequence: 365 - clear 0.000000000, sequence: 0 184 source 0 - assert 1186592701.389032765, sequence: 366 - clear 0.000000000, sequence: 0 223 so it is used for PPS assert edge. PPS clear edge can be determined only 230 delay between assert and clear edge as small as possible to reduce system
|
/linux-4.1.27/drivers/w1/masters/ |
D | matrox_w1.c | 160 assert(pdev != NULL); in matrox_w1_probe() 161 assert(ent != NULL); in matrox_w1_probe() 227 assert(dev != NULL); in matrox_w1_remove()
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | cs4271.txt | 29 One (undocumented) workaround is to assert and de-assert the PDN bit
|
D | adi,adau1701.txt | 13 assert a hardware reset at probe time.
|
D | ti,tas5086.txt | 12 assert a hardware reset at probe time.
|
/linux-4.1.27/drivers/block/ |
D | sx8.c | 94 #define assert(expr) macro 96 #define assert(expr) \ macro 525 assert(host->n_msgs <= CARM_MAX_REQ); in carm_get_request() 536 assert(crq->tag < max_queue); in carm_put_request() 541 assert(host->hw_sg_used >= crq->n_elem); in carm_put_request() 618 assert(host->state == HST_DEV_SCAN_START || in carm_array_info() 759 assert(rc == 0); in carm_end_request_queued() 822 assert(crq != NULL); in carm_oob_rq_fn() 823 assert(crq->rq == rq); in carm_oob_rq_fn() 997 assert(host->state == HST_DEV_SCAN); in carm_handle_array_info() [all …]
|
/linux-4.1.27/tools/perf/bench/ |
D | sched-pipe.c | 135 assert(pid >= 0); in bench_sched_pipe() 145 assert((retpid == pid) && WIFEXITED(wait_stat)); in bench_sched_pipe()
|
/linux-4.1.27/Documentation/misc-devices/ |
D | spear-pcie-gadget.txt | 51 inta :write 1 to assert INTA and 0 to de-assert. 104 To assert INTA 107 To de-assert INTA
|
/linux-4.1.27/tools/virtio/linux/ |
D | bug.h | 4 #define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
|
D | uaccess.h | 9 assert(p >= __user_addr_min && p + size <= __user_addr_max); in __chk_user_ptr()
|
/linux-4.1.27/arch/c6x/include/asm/ |
D | dscr.h | 30 extern void dscr_rmii_reset(int id, int assert);
|
/linux-4.1.27/include/linux/ |
D | jz4780-nemc.h | 41 bool assert);
|
D | reset-controller.h | 19 int (*assert)(struct reset_controller_dev *rcdev, unsigned long id); member
|
D | jbd.h | 270 #define J_ASSERT(assert) BUG_ON(!(assert)) argument
|
D | jbd2.h | 341 #define J_ASSERT(assert) BUG_ON(!(assert)) argument
|
/linux-4.1.27/arch/mips/alchemy/ |
D | board-mtx1.c | 223 static int mtx1_pci_idsel(unsigned int devsel, int assert) in mtx1_pci_idsel() argument 231 if (assert && devsel != 0) in mtx1_pci_idsel()
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | fsmc-nand.txt | 26 byte 4 TWAIT : number of HCLK clock cycles to assert the command to the 29 byte 5 TSET : number of HCLK clock cycles to assert the address before the
|
/linux-4.1.27/Documentation/devicetree/bindings/watchdog/ |
D | atmel-wdt.txt | 23 "all" : assert peripherals and processor reset signals 24 "proc" : assert the processor reset signal
|
/linux-4.1.27/drivers/video/fbdev/ |
D | cirrusfb.c | 71 #define assert(expr) \ macro 77 #define assert(expr) macro 637 assert(cinfo != NULL); in cirrusfb_set_mclk_as_source() 1451 assert(cinfo != NULL); in init_vgachip() 1499 assert(info->screen_size > 0); in init_vgachip() 1904 assert(pdev != NULL); in get_pci_addrs() 1905 assert(display != NULL); in get_pci_addrs() 1906 assert(registers != NULL); in get_pci_addrs() 1921 assert(*display != 0); in get_pci_addrs() 2027 assert(cinfo->btype != BT_NONE); in cirrusfb_register() [all …]
|
/linux-4.1.27/tools/testing/selftests/powerpc/tm/ |
D | tm-resched-dscr.c | 79 assert(rv); /* make sure the transaction aborted */ in test_body()
|
/linux-4.1.27/drivers/reset/ |
D | core.c | 108 if (rstc->rcdev->ops->assert) in reset_control_assert() 109 return rstc->rcdev->ops->assert(rstc->rcdev, rstc->id); in reset_control_assert()
|
D | reset-socfpga.c | 94 .assert = socfpga_reset_assert,
|
D | reset-sunxi.c | 74 .assert = sunxi_reset_assert,
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | rtllib_debug.h | 80 #define assert(expr) \ macro
|
/linux-4.1.27/drivers/net/ethernet/realtek/ |
D | 8139too.c | 134 # define assert(expr) do {} while (0) macro 136 # define assert(expr) \ macro 723 assert (dev != NULL); in __rtl8139_cleanup_dev() 724 assert (tp->pci_dev != NULL); in __rtl8139_cleanup_dev() 773 assert (pdev != NULL); in rtl8139_init_board() 961 assert (pdev != NULL); in rtl8139_init_one() 962 assert (ent != NULL); in rtl8139_init_one() 997 assert (dev != NULL); in rtl8139_init_one() 1002 assert (ioaddr != NULL); in rtl8139_init_one() 1125 assert (dev != NULL); in rtl8139_remove_one() [all …]
|
D | r8169.c | 61 #define assert(expr) \ macro 69 #define assert(expr) do {} while (0) macro 4265 assert(tp->mac_version > RTL_GIGA_MAC_VER_01); in rtl_phy_work()
|
/linux-4.1.27/arch/cris/arch-v32/drivers/ |
D | cryptocop.c | 257 #define assert(s) do{if (!(s)) panic(#s);} while(0); macro 261 #define assert(s) macro 543 assert(out_length != 0); in create_input_descriptors() 631 assert(desc_len >= dlength); in create_output_descriptors() 794 assert(operation != NULL); in cryptocop_setup_dma_list() 795 assert(int_op != NULL); in cryptocop_setup_dma_list() 1137 assert(cipher_ctx.current_src == src_dma); in cryptocop_setup_dma_list() 1174 assert(digest_ctx.pad_descs == NULL); in cryptocop_setup_dma_list() 1189 assert(csum_ctx.pad_descs == NULL); in cryptocop_setup_dma_list() 1210 assert(active_count >= eop_needed_count); in cryptocop_setup_dma_list() [all …]
|
/linux-4.1.27/sound/pci/asihpi/ |
D | hpi6000.c | 617 phr->u.ax.assert.p1 = in adapter_get_asserts() 619 phr->u.ax.assert.p2 = 0; in adapter_get_asserts() 620 phr->u.ax.assert.count = 1; /* assert count */ in adapter_get_asserts() 621 phr->u.ax.assert.dsp_index = -1; /* "dsp index" */ in adapter_get_asserts() 622 strcpy(phr->u.ax.assert.sz_message, "PCI2040 error"); in adapter_get_asserts() 623 phr->u.ax.assert.dsp_msg_addr = 0; in adapter_get_asserts() 1786 phr->u.ax.assert.dsp_index = 0; /* dsp 0 default */ in hw_message() 1788 if (!phr->u.ax.assert.count) { in hw_message() 1792 phr->u.ax.assert.dsp_index = 1; in hw_message()
|
D | hpi_internal.h | 714 } assert; member
|
/linux-4.1.27/tools/cgroup/ |
D | cgroup_event_listener.c | 67 assert(ret == sizeof(result)); in main()
|
/linux-4.1.27/arch/mips/ralink/ |
D | reset.c | 63 .assert = ralink_assert_device,
|
/linux-4.1.27/tools/perf/util/ |
D | strbuf.h | 67 assert(len < sb->alloc); in strbuf_setlen()
|
D | evsel.c | 901 assert(list_empty(&evsel->node)); in perf_evsel__exit()
|
/linux-4.1.27/tools/testing/selftests/x86/ |
D | entry_from_vm86.c | 105 assert((v86.regs.cs & 3) == 0); /* Looks like RPL = 0 */ in main()
|
/linux-4.1.27/Documentation/networking/caif/ |
D | spi_porting.txt | 49 void (*ss_cb) (bool assert, struct cfspi_ifc *ifc); 121 * called with the parameter assert set to true. It is OK 152 /* If xfer is true then you should assert the SPI_INT to indicate to 154 * SPI. If xfer is false then you should de-assert SPI_INT to indicate
|
/linux-4.1.27/tools/lguest/ |
D | lguest.c | 1253 assert(off < 4); in ioread() 1254 assert(mask == 0xFF || mask == 0xFFFF || mask == 0xFFFFFFFF); in ioread() 1261 assert(off < 4); in iowrite() 1262 assert(mask == 0xFF || mask == 0xFFFF || mask == 0xFFFFFFFF); in iowrite() 1563 assert(~(val & ~mask)); in setreg_num() 1903 assert(d->mmio->cfg.guest_feature_select == 1); in emulate_mmio_write() 2423 assert(~(dev->config.bar[0] & 0xF)); in no_device_config() 2451 assert(dev->config.cfg_access.cap.cap_next % 4 == 0); in set_device_config() 2540 assert(pci->capabilities % 4 == 0); in init_pci_config() 2561 assert(pci->common.cap_next % 2 == 0); in init_pci_config() [all …]
|
/linux-4.1.27/drivers/memory/ |
D | jz4780-nemc.c | 121 void jz4780_nemc_assert(struct device *dev, unsigned int bank, bool assert) in jz4780_nemc_assert() argument 128 if (assert) in jz4780_nemc_assert()
|
/linux-4.1.27/drivers/pps/ |
D | sysfs.c | 44 static DEVICE_ATTR_RO(assert);
|
/linux-4.1.27/drivers/clk/mmp/ |
D | reset.c | 78 .assert = mmp_clk_reset_assert,
|
/linux-4.1.27/tools/perf/util/include/linux/ |
D | kernel.h | 62 #define BUG_ON(cond) assert(!(cond))
|
/linux-4.1.27/drivers/clk/rockchip/ |
D | softrst.c | 85 .assert = rockchip_softrst_assert,
|
/linux-4.1.27/arch/microblaze/boot/dts/ |
D | system.dts | 359 xlnx,gen0-assert = <0x1>; 360 xlnx,gen1-assert = <0x1>; 362 xlnx,trig0-assert = <0x1>; 363 xlnx,trig1-assert = <0x1>;
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | virtex440-ml507.dts | 399 xlnx,gen0-assert = <1>; 400 xlnx,gen1-assert = <1>; 402 xlnx,trig0-assert = <1>; 403 xlnx,trig1-assert = <1>;
|
/linux-4.1.27/Documentation/mic/mpssd/ |
D | mpssd.c | 293 assert(0); in set_dp() 307 assert(0); in get_dp() 335 assert(0); in get_device_desc() 369 assert(copy->out_len == sum_iovec_len(copy)); in verify_out_len() 450 assert(le32toh(vr0->info->magic) == MIC_MAGIC + type); in init_vr() 463 assert(le32toh(vr1->info->magic) == MIC_MAGIC + type + 1); in init_vr() 1331 assert(0); in get_mic_shutdown_status() 1350 assert(0); in get_mic_state()
|
/linux-4.1.27/Documentation/devicetree/bindings/reset/ |
D | st,sti-picophyreset.txt | 10 registers and after an assert/deassert sequence the hardware's previous state
|
D | st,sti-softreset.txt | 11 registers and after an assert/deassert sequence the hardware's previous state
|
D | st,sti-powerdown.txt | 12 registers and after an assert/deassert sequence the hardware's previous state
|
/linux-4.1.27/net/ceph/crush/ |
D | crush.c | 8 # define BUG_ON(x) assert(!(x))
|
D | mapper.c | 15 # define BUG_ON(x) assert(!(x))
|
/linux-4.1.27/tools/testing/selftests/powerpc/mm/ |
D | subpage_prot.c | 100 assert(map); in run_test()
|
/linux-4.1.27/scripts/kconfig/ |
D | lkc.h | 91 assert(len != 0); in xfwrite()
|
D | .conf.o.cmd | 77 /usr/include/assert.h \
|
D | .zconf.tab.o.cmd | 58 /usr/include/assert.h \
|
/linux-4.1.27/drivers/net/caif/ |
D | caif_spi.c | 452 static void cfspi_ss_cb(bool assert, struct cfspi_ifc *ifc) in cfspi_ss_cb() argument 467 if (assert) { in cfspi_ss_cb() 477 if (assert) in cfspi_ss_cb()
|
/linux-4.1.27/arch/mips/lantiq/xway/ |
D | reset.c | 156 .assert = ltq_assert_device,
|
/linux-4.1.27/drivers/net/wireless/b43legacy/ |
D | b43legacy.h | 330 #ifdef assert 331 # undef assert
|
/linux-4.1.27/arch/c6x/platforms/ |
D | dscr.c | 259 void dscr_rmii_reset(int id, int assert) in dscr_rmii_reset() argument 275 if (assert) in dscr_rmii_reset()
|
/linux-4.1.27/drivers/infiniband/hw/nes/ |
D | nes.h | 149 #define assert(expr) \ macro 160 #define assert(expr) do {} while (0) macro
|
D | nes.c | 467 assert(pcidev != NULL); in nes_probe() 468 assert(ent != NULL); in nes_probe()
|
D | nes_nic.c | 149 assert(nesdev != NULL); in nes_netdev_open()
|
/linux-4.1.27/Documentation/networking/ |
D | dl2k.txt | 220 If set rx_coalesce > 0, hardware only assert 222 assert rx interrupt until m frames received or 229 that is, hardware assert only 1 interrupt
|
D | packet_mmap.txt | 766 #include <assert.h> 849 assert(ring->rd); 950 assert(fd > 0);
|
D | bonding.txt | 427 monitor, devices which assert link up prior to being
|
/linux-4.1.27/arch/mips/pci/ |
D | pci-alchemy.c | 45 int (*board_pci_idsel)(unsigned int devsel, int assert); 300 static int alchemy_pci_def_idsel(unsigned int devsel, int assert) in alchemy_pci_def_idsel() argument
|
/linux-4.1.27/drivers/clk/sunxi/ |
D | clk-usb.c | 79 .assert = sunxi_usb_reset_assert,
|
D | clk-sun9i-mmc.c | 86 .assert = sun9i_mmc_reset_assert,
|
/linux-4.1.27/lib/mpi/ |
D | mpi-internal.h | 43 #define assert(x) \ macro
|
/linux-4.1.27/drivers/clk/tegra/ |
D | clk.c | 260 .assert = tegra_clk_rst_assert,
|
/linux-4.1.27/drivers/scsi/csiostor/ |
D | csio_mb.c | 1146 dbg->u.assert.filename_0_7, in csio_mb_dump_fw_dbg() 1147 ntohl(dbg->u.assert.line), in csio_mb_dump_fw_dbg() 1148 ntohl(dbg->u.assert.x), in csio_mb_dump_fw_dbg() 1149 ntohl(dbg->u.assert.y)); in csio_mb_dump_fw_dbg()
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-arb-gpio-challenge.txt | 27 The basic algorithm is to assert your line when you want the bus, then make
|
/linux-4.1.27/fs/btrfs/ |
D | Kconfig | 85 bool "Btrfs assert support"
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
D | sym_hipd.h | 94 #ifndef assert 95 #define assert(expression) { \ macro
|
D | sym_hipd.c | 1548 assert(!lp->started_tags || !lp->started_no_tag); 1951 assert(target == (INB(np, nc_sdid) & 0x0f)); 1996 assert(np->features & FE_U3EN); 2986 assert((i >= 0) && (i < 2*MAX_QUEUE)); 2995 assert(cp); 3399 assert(i && sym_get_cam_status(cp->cmd) == DID_SOFT_ERROR); 4963 assert (((offsetof(struct sym_reg, nc_sxfer) ^ 4965 assert (((offsetof(struct sym_reg, nc_scntl3) ^ 5503 assert (cp->host_status == HS_COMPLETE);
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.quirks | 59 FRAME will be asserted (typically - each initiator will assert FRAME on
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dcsr.txt | 74 The EPU counters can be configured to assert the performance 79 The EPU unit can also be configured to assert either or both of
|
/linux-4.1.27/tools/perf/ |
D | builtin-timechart.c | 207 assert(cursor != NULL); in find_create_pid() 233 assert(c != NULL); in pid_set_comm() 277 assert(c != NULL); in pid_put_sample() 284 assert(sample != NULL); in pid_put_sample()
|
D | builtin-top.c | 817 assert(evsel != NULL); in perf_top__mmap_read_idx()
|
/linux-4.1.27/fs/ext3/ |
D | namei.c | 60 #ifndef assert 61 #define assert(test) J_ASSERT(test) macro 430 assert (at == p - 1); in dx_probe() 759 assert(count < dx_get_limit(entries)); in dx_insert_block() 760 assert(old < entries + count); in dx_insert_block()
|
/linux-4.1.27/net/ipv6/ |
D | ip6mr.c | 114 mifi_t mifi, int assert); 1135 mifi_t mifi, int assert) in ip6mr_cache_report() argument 1142 if (assert == MRT6MSG_WHOLEPKT) in ip6mr_cache_report() 1158 if (assert == MRT6MSG_WHOLEPKT) { in ip6mr_cache_report() 1196 msg->im6_msgtype = assert; in ip6mr_cache_report()
|
/linux-4.1.27/drivers/usb/phy/ |
D | phy-msm-usb.c | 257 static int msm_otg_link_clk_reset(struct msm_otg *motg, bool assert) in msm_otg_link_clk_reset() argument 261 if (assert) in msm_otg_link_clk_reset() 268 assert ? "assert" : "deassert"); in msm_otg_link_clk_reset()
|
/linux-4.1.27/drivers/video/fbdev/nvidia/ |
D | nvidia.c | 46 #define assert(expr) \ macro 53 #define assert(expr) macro 1283 assert(pd != NULL); in nvidiafb_probe()
|
/linux-4.1.27/net/ipv4/ |
D | ipmr.c | 132 struct sk_buff *pkt, vifi_t vifi, int assert); 953 struct sk_buff *pkt, vifi_t vifi, int assert) in ipmr_cache_report() argument 963 if (assert == IGMPMSG_WHOLEPKT) in ipmr_cache_report() 973 if (assert == IGMPMSG_WHOLEPKT) { in ipmr_cache_report() 1008 msg->im_msgtype = assert; in ipmr_cache_report()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | verity.txt | 96 Cryptographic hashes are used to assert the integrity of the device on a
|
/linux-4.1.27/drivers/video/fbdev/riva/ |
D | fbdev.c | 73 #define assert(expr) \ macro 80 #define assert(expr) macro 1905 assert(pd != NULL); in rivafb_probe()
|
/linux-4.1.27/tools/perf/ui/ |
D | browser.c | 97 assert(pos != NULL); in ui_browser__list_head_seek()
|
/linux-4.1.27/arch/mips/include/asm/mach-au1x00/ |
D | au1000.h | 799 int (*board_pci_idsel)(unsigned int devsel, int assert);
|
/linux-4.1.27/tools/testing/selftests/net/ |
D | psock_tpacket.c | 64 # define bug_on(cond) assert(!(cond))
|
/linux-4.1.27/fs/ext4/ |
D | namei.c | 158 #ifndef assert 159 #define assert(test) J_ASSERT(test) macro 830 assert (at == p - 1); in dx_probe() 1231 assert(count < dx_get_limit(entries)); in dx_insert_block() 1232 assert(old < entries + count); in dx_insert_block()
|
D | mballoc.c | 543 #define MB_CHECK_ASSERT(assert) \ argument 545 if (!(assert)) { \ 548 function, file, line, # assert); \
|
/linux-4.1.27/arch/tile/include/hv/ |
D | netio_intf.h | 32 #define netio_assert assert /**< Enable assertions from macros */
|
/linux-4.1.27/tools/vm/ |
D | page-types.c | 657 assert(start < index); in walk_task()
|
/linux-4.1.27/Documentation/powerpc/ |
D | qe_firmware.txt | 129 | | | assert a special host command (push command)|
|
D | eeh-pci-error-recovery.txt | 165 rtas_set_slot_reset() -- assert the PCI #RST line for 1/8th of a second
|
/linux-4.1.27/drivers/tty/serial/ |
D | sirfsoc_uart.c | 151 unsigned int assert = mctrl & TIOCM_RTS; in sirfsoc_uart_set_mctrl() local 152 unsigned int val = assert ? SIRFUART_AFC_CTRL_RX_THD : 0x0; in sirfsoc_uart_set_mctrl()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/ |
D | t4_hw.c | 217 asrt.u.assert.filename_0_7, ntohl(asrt.u.assert.line), in fw_asrt() 218 ntohl(asrt.u.assert.x), ntohl(asrt.u.assert.y)); in fw_asrt()
|
D | t4fw_api.h | 2953 } assert; member
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm93 | 93 assert #P2_PROCHOT, and vice-versa. This mode is enabled by writing a
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | head.S | 365 move.d $r0, [$r1]; assert ATA bus-reset
|
/linux-4.1.27/drivers/net/wan/ |
D | Kconfig | 299 As a replacement, some vendors provide a way to assert the PCI #RST
|
/linux-4.1.27/Documentation/dmaengine/ |
D | provider.txt | 20 will want to start a transfer, it will assert a DMA request (DRQ) by
|
/linux-4.1.27/Documentation/ |
D | memory-barriers.txt | 770 assert(!(r1 == 1 && r2 == 1)); 772 The above two-CPU example will never trigger the assert(). However, 780 assert(!(r1 == 2 && r2 == 1 && x == 2)); /* FAILS!!! */ 867 assert(r1 == 0 || r2 == 0);
|
D | pinctrl.txt | 797 either listen for input or drive high/low to assert/deassert some
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx.seq | 657 * target to assert REQ before checking MSG, C/D and I/O for 1026 * and for FIFOEMP to de-assert. Here we
|
D | aic79xx.seq | 846 * target to assert REQ before checking MSG, C/D and I/O for
|
/linux-4.1.27/drivers/staging/rtl8192e/rtl8192e/ |
D | rtl_core.c | 1887 assert(queue_index != TXCMD_QUEUE); in rtl8192_hard_data_xmit()
|
/linux-4.1.27/scripts/genksyms/ |
D | parse.tab.c_shipped | 70 #include <assert.h>
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | api.txt | 671 In both cases, level is used to assert/deassert the line. 2287 With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 1433 give permission to use their names for publicity for or to assert or
|