/external/newfs_msdos/ |
D | mkfs_msdos.c | 160 struct bpb { struct 183 struct bpb bpb; member 233 static int getstdfmt(const char *, struct bpb *); 234 static int getdiskinfo(int, const char *, const char *, int, struct bpb *); 235 static void print_bpb(struct bpb *); 248 struct bpb bpb; in mkfs_msdos() local 313 memset(&bpb, 0, sizeof(bpb)); in mkfs_msdos() 315 if (getstdfmt(o.floppy, &bpb) == -1) in mkfs_msdos() 317 bpb.bpbHugeSectors = bpb.bpbSectors; in mkfs_msdos() 318 bpb.bpbSectors = 0; in mkfs_msdos() [all …]
|
/external/mesa3d/prebuilt-intermediates/isl/ |
D | isl_format_layout.c | 33 .bpb = 128, 53 .bpb = 128, 73 .bpb = 128, 93 .bpb = 128, 113 .bpb = 128, 133 .bpb = 128, 153 .bpb = 128, 173 .bpb = 128, 193 .bpb = 128, 213 .bpb = 128, [all …]
|
/external/mesa3d/src/intel/isl/ |
D | isl_gen9.c | 43 const uint32_t bpb = fmtl->bpb; in gen9_calc_std_image_alignment_sa() local 52 .w = 1 << (12 - (ffs(bpb) - 4) + (4 * is_Ys)), in gen9_calc_std_image_alignment_sa() 63 .w = 1 << (6 - ((ffs(bpb) - 4) / 2) + (4 * is_Ys)), in gen9_calc_std_image_alignment_sa() 64 .h = 1 << (6 - ((ffs(bpb) - 3) / 2) + (4 * is_Ys)), in gen9_calc_std_image_alignment_sa() 89 .w = 1 << (4 - ((ffs(bpb) - 2) / 3) + (4 * is_Ys)), in gen9_calc_std_image_alignment_sa() 90 .h = 1 << (4 - ((ffs(bpb) - 4) / 3) + (2 * is_Ys)), in gen9_calc_std_image_alignment_sa() 91 .d = 1 << (4 - ((ffs(bpb) - 3) / 3) + (2 * is_Ys)), in gen9_calc_std_image_alignment_sa()
|
D | isl_storage_image.c | 204 return isl_format_get_layout(fmt)->bpb <= 64; in isl_has_matching_typed_storage_image_format() 206 return isl_format_get_layout(fmt)->bpb <= 32; in isl_has_matching_typed_storage_image_format() 243 const int cpp = isl_format_get_layout(surf->format)->bpb / 8; in isl_surf_fill_image_param() 315 param->stride[0] = isl_format_layouts[format].bpb / 8; in isl_buffer_fill_image_param()
|
D | isl.c | 1243 const uint32_t bs = fmtl->bpb / 8; in isl_calc_row_pitch_alignment() 1263 const uint32_t bs = fmtl->bpb / 8; in isl_calc_linear_min_row_pitch() 1277 assert(fmtl->bpb % tile_info->format_bpb == 0); in isl_calc_tiled_min_row_pitch() 1279 const uint32_t tile_el_scale = fmtl->bpb / tile_info->format_bpb; in isl_calc_tiled_min_row_pitch() 1422 isl_tiling_get_info(tiling, fmtl->bpb, &tile_info); in isl_surf_init_s() 1477 base_alignment = MAX(base_alignment, fmtl->bpb / 4); in isl_surf_init_s() 1479 base_alignment = MAX(base_alignment, fmtl->bpb / 8); in isl_surf_init_s() 1548 isl_tiling_get_info(surf->tiling, fmtl->bpb, tile_info); in isl_surf_get_tile_info() 1724 switch (isl_format_get_layout(surf->format)->bpb) { in isl_surf_get_ccs_surf() 1732 switch (isl_format_get_layout(surf->format)->bpb) { in isl_surf_get_ccs_surf() [all …]
|
D | isl_surface_state.c | 266 assert(surf_fmtl->bpb == view_fmtl->bpb); in isl_genX() 523 assert(isl_is_pow2(isl_format_get_layout(info->view->format)->bpb)); in isl_genX() 531 if (isl_format_get_layout(info->view->format)->bpb == 8) in isl_genX() 533 if (isl_format_get_layout(info->view->format)->bpb == 16) in isl_genX()
|
D | isl.h | 992 uint16_t bpb; /**< Bits per block */ member 1787 assert(surf->row_pitch % (fmtl->bpb / 8) == 0); in isl_surf_get_row_pitch_el() 1788 return surf->row_pitch / (fmtl->bpb / 8); in isl_surf_get_row_pitch_el() 1917 uint32_t bpb, 1946 isl_tiling_get_intratile_offset_el(tiling, fmtl->bpb, row_pitch, in isl_tiling_get_intratile_offset_sa()
|
D | isl_gen4.c | 87 if (isl_format_get_layout(info->format)->bpb >= 128) in isl_gen4_filter_tiling()
|
D | gen_format_layout.py | 152 self.bpb = int(line[1])
|
D | isl_gen7.c | 295 if (ISL_DEV_GEN(dev) < 7 && isl_format_get_layout(info->format)->bpb >= 128) in isl_gen6_filter_tiling()
|
D | isl_format_layout.csv | 33 # bpb: bits per block 66 # name , bpb, bw, bh, bd, r, g, b, a, l, i, p, space, t…
|
D | isl_format.c | 523 return fmtl->bpb == 32 || fmtl->bpb == 64 || fmtl->bpb == 128; in isl_format_supports_ccs_d() 593 } else if (devinfo->gen < 7 && isl_format_get_layout(format)->bpb > 64) { in isl_format_supports_multisampling()
|
/external/syzkaller/vendor/google.golang.org/appengine/mail/ |
D | mail.go | 29 bpb "google.golang.org/appengine/internal/base" packageName 114 res := &bpb.VoidProto{}
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_blit.c | 1601 if (dst_fmtl->bpb % 3 == 0) { in fake_dest_rgb_with_red() 2147 get_copy_format_for_bpb(const struct isl_device *isl_dev, unsigned bpb) in get_copy_format_for_bpb() argument 2163 switch (bpb) { in get_copy_format_for_bpb() 2176 switch (bpb) { in get_copy_format_for_bpb() 2390 info->surf.format = get_copy_format_for_bpb(isl_dev, fmtl->bpb); in blorp_surf_convert_to_uncompressed() 2435 } else if (src_fmtl->bpb == dst_fmtl->bpb) { in blorp_copy() 2439 get_copy_format_for_bpb(isl_dev, src_fmtl->bpb); in blorp_copy() 2443 if (src_fmtl->bpb == dst_fmtl->bpb) { in blorp_copy() 2447 get_copy_format_for_bpb(isl_dev, dst_fmtl->bpb); in blorp_copy() 2450 params.dst.view.format = get_copy_format_for_bpb(isl_dev, dst_fmtl->bpb); in blorp_copy() [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_screen_cache.c | 47 unsigned bw, bh, bpb, total_size, i; in surface_size() local 60 svga_format_size(key->format, &bw, &bh, &bpb); in surface_size() 68 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb; in surface_size()
|
/external/harfbuzz_ng/src/hb-ucdn/ |
D | ucdn.c | 129 BracketPair *bpb = (BracketPair *)b; in compare_bp() local 130 return bpa->from - bpb->from; in compare_bp()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ppucd.cpp | 44 bmg(U_SENTINEL), bpb(U_SENTINEL), in UniProps() 399 props.bpb=U_SENTINEL; in parseProperty() 456 props.bpb=parseCodePoint(v, errorCode); in parseProperty()
|
D | ppucd.h | 53 UChar32 bmg, bpb; member
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_android.c | 169 (isl_format_get_layout(format)->bpb / 8); in anv_image_from_gralloc()
|
D | anv_image.c | 1305 const uint32_t format_bs = isl_format_get_layout(view->format)->bpb / 8; in anv_CreateBufferView() 1336 isl_format_get_layout(storage_format)->bpb / 8)); in anv_CreateBufferView() 1342 isl_format_get_layout(view->format)->bpb / 8); in anv_CreateBufferView()
|
D | anv_formats.c | 439 !util_is_power_of_two(isl_layout->bpb)) { in anv_get_format_plane() 565 !util_is_power_of_two(isl_format_layouts[base_isl_format].bpb) && in get_image_format_features()
|
D | anv_blorp.c | 144 assert(fmtl->bpb == isl_format_get_layout(format)->bpb); in get_blorp_surf_for_anv_buffer() 377 (buffer_fmtl->bpb / 8); in copy_buffer_to_image()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs_surface_builder.cpp | 1005 const unsigned size = isl_format_get_layout(format)->bpb / 32; in emit_image_load() 1153 const unsigned size = isl_format_get_layout(format)->bpb / 32; in emit_image_store()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_mipmap_tree.c | 642 mt->cpp = isl_format_get_layout(mt->surf.format)->bpb / 8; in make_surface() 1480 const unsigned cpp = (isl_format_get_layout(dst_mt->surf.format)->bpb / 8); in intel_miptree_copy_slice_sw()
|
/external/icu/icu4c/source/data/unidata/ |
D | ppucd.txt | 16 property;Miscellaneous;bpb;Bidi_Paired_Bracket 1247 cp;0028;bc=ON;Bidi_M;bmg=0029;bpb=0029;bpt=o;gc=Ps;lb=OP;na=LEFT PARENTHESIS;Pat_Syn;SB=CL 1248 cp;0029;bc=ON;Bidi_M;bmg=0028;bpb=0028;bpt=c;gc=Pe;lb=CP;na=RIGHT PARENTHESIS;Pat_Syn;SB=CL 1302 cp;005B;bc=ON;Bidi_M;bmg=005D;bpb=005D;bpt=o;gc=Ps;lb=OP;na=LEFT SQUARE BRACKET;Pat_Syn;SB=CL 1304 cp;005D;bc=ON;Bidi_M;bmg=005B;bpb=005B;bpt=c;gc=Pe;lb=CP;na=RIGHT SQUARE BRACKET;Pat_Syn;SB=CL 1336 cp;007B;bc=ON;Bidi_M;bmg=007D;bpb=007D;bpt=o;gc=Ps;lb=OP;na=LEFT CURLY BRACKET;Pat_Syn;SB=CL 1338 cp;007D;bc=ON;Bidi_M;bmg=007B;bpb=007B;bpt=c;gc=Pe;lb=CL;na=RIGHT CURLY BRACKET;Pat_Syn;SB=CL 5197 cp;0F3A;bc=ON;Bidi_M;bmg=0F3B;bpb=0F3B;bpt=o;gc=Ps;-IDC;InSC=Other;lb=OP;na=TIBETAN MARK GUG RTAGS … 5198 cp;0F3B;bc=ON;Bidi_M;bmg=0F3A;bpb=0F3A;bpt=c;gc=Pe;-IDC;InSC=Other;lb=CL;na=TIBETAN MARK GUG RTAGS … 5199 cp;0F3C;bc=ON;Bidi_M;bmg=0F3D;bpb=0F3D;bpt=o;gc=Ps;-IDC;InSC=Other;lb=OP;na=TIBETAN MARK ANG KHANG … [all …]
|