Home
last modified time | relevance | path

Searched refs:bs (Results 1 – 4 of 4) sorted by relevance

/system/extras/fatblock/
Dfs.c165 struct fat_boot_sector *bs; in fs_init() local
184 bs = &fs->boot; in fs_init()
186 strpadcpy(bs->name, "FATBLOCK", ' ', sizeof(bs->name)); in fs_init()
187 bs->sector_size = htole16(sector_size); in fs_init()
188 bs->sectors_per_cluster = sectors_per_cluster; in fs_init()
189 bs->reserved_sectors = htole16(reserved_sectors); in fs_init()
190 bs->fats = 1; in fs_init()
191 bs->media_desc = FAT_MEDIA_DESC_FIXED; in fs_init()
193 bs->sectors_per_track = htole16(42); in fs_init()
194 bs->heads = htole16(42); in fs_init()
[all …]
/system/extras/tests/ext4/
Dandroid_emmc_perf_tests.sh116 adb shell dd if=/dev/zero of=$CACHE bs=1048576 count=512
144 adb shell dd if=/dev/zero of="$STATS_FILE" bs=1048576
153 adb shell dd if=/dev/zero of="$STATS_FILE" bs=1048576
214 adb shell dd if="$CACHE" of=/dev/null bs=1048576 count=200
224 adb shell dd if=/dev/zero conv=notrunc of="$CACHE" bs=1048576 count=200
/system/core/toolbox/
Dnewfs_msdos.c106 struct bs { struct
262 struct bs *bs; in newfs_msdos_main() local
641 x1 = sizeof(struct bs); in newfs_msdos_main()
684 bs = (struct bs *)img; in newfs_msdos_main()
685 mk1(bs->jmp[0], 0xeb); in newfs_msdos_main()
686 mk1(bs->jmp[1], x1 - 2); in newfs_msdos_main()
687 mk1(bs->jmp[2], 0x90); in newfs_msdos_main()
688 setstr(bs->oem, opt_O ? opt_O : "BSD 4.4", in newfs_msdos_main()
689 sizeof(bs->oem)); in newfs_msdos_main()
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.cpp620 const int bs = mBlendSrc; in isAlphaSourceNeeded() local
622 return bs==GGL_SRC_ALPHA_SATURATE || in isAlphaSourceNeeded()
623 bs==GGL_SRC_ALPHA || bs==GGL_ONE_MINUS_SRC_ALPHA || in isAlphaSourceNeeded()