/system/core/toolbox/ |
newfs_msdos.c | 155 struct bpb { struct 178 struct bpb bpb; member in struct:__anon60995 225 static void getstdfmt(const char *, struct bpb *); 227 struct bpb *); 228 static void print_bpb(struct bpb *); 260 struct bpb bpb; local 396 memset(&bpb, 0, sizeof(bpb)); [all...] |
/external/grub/stage2/ |
fsys_fat.c | 69 struct fat_bpb bpb; local 78 /* Read bpb */ 79 if (! devread (0, 0, sizeof (bpb), (char *) &bpb)) 84 if (bpb.sects_per_clust == 0) 87 FAT_SUPER->sectsize_bits = log2 (FAT_CVT_U16 (bpb.bytes_per_sect)); 89 = FAT_SUPER->sectsize_bits + log2 (bpb.sects_per_clust); 92 FAT_SUPER->num_sectors = FAT_CVT_U16 (bpb.short_sectors) 93 ? FAT_CVT_U16 (bpb.short_sectors) : bpb.long_sectors [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
DXTFlipper.java | 227 int bpb = type == 1 || type == 5 ? 8 : 16; local 229 ByteBuffer retImg = BufferUtils.createByteBuffer(blocksX * blocksY * bpb); 240 int blockByteOffset = x * bpb; 242 img.limit(blockByteOffset + bpb); 276 int blockByteOffset = blockIdx * bpb; 279 img.limit(blockByteOffset + bpb); 282 blockByteOffset = blockIdx * bpb; 285 retImg.limit(blockByteOffset + bpb);
|
/cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/ |
ProgramFragmentTest.java | 83 Program.BaseProgramBuilder bpb = pfb; local 91 bpb.addTexture(tType); 92 bpb.getCurrentTextureIndex(); 98 bpb.addConstant(constInput[i].getType()); 99 bpb.getCurrentConstantIndex(); 103 bpb.setShader(shader);
|
ProgramVertexTest.java | 94 Program.BaseProgramBuilder bpb = pvb; local 104 bpb.addConstant(constInput[i].getType()); 105 bpb.getCurrentConstantIndex(); 109 bpb.setShader(shader);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_screen_cache.c | 46 unsigned bw, bh, bpb, total_size, i; local 58 svga_format_size(key->format, &bw, &bh, &bpb); 66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_screen_cache.c | 46 unsigned bw, bh, bpb, total_size, i; local 58 svga_format_size(key->format, &bw, &bh, &bpb); 66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb;
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
SkeletonControl.java | 170 FloatBuffer bpb = (FloatBuffer) bindPos.getData(); local 174 bpb.clear(); 189 pb.put(bpb).clear();
|