/external/ltp/testcases/kernel/device-drivers/agp/kernel_space/ |
load_tagp.sh | 2 insmod -f ./tagp.ko || insmod -f ./tagp.o || exit 1 3 rm -f /dev/tagp 4 major=`awk '/tagp/{print \$1}' /proc/devices` 5 mknod /dev/tagp c $major 0
|
Makefile | 10 obj-m := tagp.o 22 rm -f tagp.o 2>/dev/null || true
|
/device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/ |
fdt.c | 96 const fdt32_t *tagp, *lenp; local 102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); 103 if (!tagp) 105 tag = fdt32_to_cpu(*tagp);
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/ |
fdt.c | 95 const fdt32_t *tagp, *lenp;
local 101 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
102 if (!tagp)
104 tag = fdt32_to_cpu(*tagp);
|
/external/dtc/libfdt/ |
fdt.c | 96 const fdt32_t *tagp, *lenp; local 102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); 103 if (!tagp) 105 tag = fdt32_to_cpu(*tagp);
|
/external/u-boot/scripts/dtc/libfdt/ |
fdt.c | 96 const fdt32_t *tagp, *lenp; local 102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); 103 if (!tagp) 105 tag = fdt32_to_cpu(*tagp);
|
/external/e2fsprogs/debugfs/ |
recovery.c | 224 char * tagp; local 232 tagp = &bh->b_data[sizeof(journal_header_t)]; 234 while ((tagp - bh->b_data + tag_bytes) <= size) { 235 tag = (journal_block_tag_t *) tagp; 238 tagp += tag_bytes; 240 tagp += 16; 482 char * tagp; local 580 tagp = &bh->b_data[sizeof(journal_header_t)]; 581 while ((tagp - bh->b_data + tag_bytes) 585 tag = (journal_block_tag_t *) tagp; [all...] |
do_journal.c | 622 char *tagp; local 630 tagp = buf + sizeof(journal_header_t); 632 while ((tagp - buf + tag_bytes) <= size) { 633 tag = (journal_block_tag_t *) tagp; 636 tagp += tag_bytes; 638 tagp += 16;
|
logdump.c | 507 char *tagp; local 531 tagp = &buf[offset]; 532 tag = (journal_block_tag_t *) tagp;
|
/external/e2fsprogs/e2fsck/ |
recovery.c | 224 char * tagp; local 232 tagp = &bh->b_data[sizeof(journal_header_t)]; 234 while ((tagp - bh->b_data + tag_bytes) <= size) { 235 tag = (journal_block_tag_t *) tagp; 238 tagp += tag_bytes; 240 tagp += 16; 482 char * tagp; local 580 tagp = &bh->b_data[sizeof(journal_header_t)]; 581 while ((tagp - bh->b_data + tag_bytes) 585 tag = (journal_block_tag_t *) tagp; [all...] |