Searched refs:bsize (Results 1 - 17 of 17) sorted by relevance

/xsrc/external/mit/libXau/dist/
H A DAuFileName.c52 static size_t bsize; local in function:XauFileName
75 if ((size > bsize) || (buf == NULL)) {
80 bsize = 0;
91 bsize = size;
93 snprintf (buf, bsize, "%s%s", name,
/xsrc/external/mit/freetype/dist/src/gzip/
H A Dzutil.c86 ulg bsize = (ulg)items*size; local in function:zcalloc
91 if (bsize < 65520L) {
92 buf = farmalloc(bsize);
95 buf = farmalloc(bsize + 16L);
/xsrc/external/mit/freetype/dist/src/bdf/
H A Dbdfdrivr.c449 FT_Bitmap_Size* bsize = bdfface->available_sizes; local in function:BDF_Face_Init
454 FT_ZERO( bsize );
470 bsize->height = (FT_Short)( font->font_ascent + font->font_descent );
482 bsize->width = 0x7FFF;
484 bsize->width ));
487 bsize->width = FT_ABS( (FT_Short)( ( prop->value.l + 5 ) / 10 ) );
492 bsize->width = (FT_Short)FT_MulDiv( bsize->height, 2, 3 );
506 bsize->size = 0x7FFF;
508 bsize
751 FT_Bitmap_Size* bsize = face->available_sizes; local in function:BDF_Size_Request
[all...]
/xsrc/external/mit/freetype/dist/src/pcf/
H A Dpcfread.c1573 FT_Bitmap_Size* bsize = root->available_sizes; local in function:pcf_load_font
1577 FT_ZERO( bsize );
1582 bsize->height = face->accel.maxbounds.ascent << 6;
1592 bsize->height = 0x7FFF;
1594 bsize->height ));
1597 bsize->height = FT_ABS( (FT_Short)( face->accel.fontAscent +
1609 bsize->width = 0x7FFF;
1611 bsize->width ));
1614 bsize->width = FT_ABS( (FT_Short)( ( prop->value.l + 5 ) / 10 ) );
1619 bsize
[all...]
H A Dpcfdrivr.c433 FT_Bitmap_Size* bsize = size->face->available_sizes; local in function:PCF_Size_Request
444 if ( height == ( ( bsize->y_ppem + 32 ) >> 6 ) )
/xsrc/external/mit/libXi/dist/src/
H A DXGMotion.c119 size_t bsize = rep.nEvents * local in function:XGetDeviceMotionEvents
121 bufp = Xmalloc(bsize);
/xsrc/external/mit/freetype/dist/src/winfonts/
H A Dwinfnt.c802 FT_Bitmap_Size* bsize = root->available_sizes; local in function:FNT_Face_Init
806 bsize->width = (FT_Short)font->header.avg_width;
807 bsize->height = (FT_Short)( font->header.pixel_height +
809 bsize->size = font->header.nominal_point_size << 6;
819 bsize->y_ppem = FT_MulDiv( bsize->size, y_res, 72 );
820 bsize->y_ppem = FT_PIX_ROUND( bsize->y_ppem );
830 if ( bsize->y_ppem > ( font->header.pixel_height << 6 ) )
834 bsize
955 FT_Bitmap_Size* bsize = size->face->available_sizes; local in function:FNT_Size_Request
[all...]
/xsrc/external/mit/libICE/dist/src/
H A Dauthutil.c72 static size_t bsize; local in function:IceAuthFileName
120 if (size > bsize)
126 bsize = 0;
129 bsize = size;
132 snprintf (buf, bsize, "%s/%s", name, ICEauthority_name);
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/loader/
H A Dloadext.c195 int bsize, i; local in function:add_arc
216 bsize = n1->n_arcsize * sizeof(*n1->n_arcs) * 2;
217 n1->n_arcs = xnfrealloc(n1->n_arcs, bsize);
218 n1->n_arcsize = bsize / sizeof(*n1->n_arcs);
/xsrc/external/mit/freetype/dist/src/sfnt/
H A Dsfobjs.c1216 FT_Bitmap_Size* bsize = root->available_sizes + bsize_idx; local in function:sfnt_load_face
1223 bsize->height = (FT_Short)( metrics.height >> 6 );
1224 bsize->width = (FT_Short)(
1227 bsize->x_ppem = metrics.x_ppem << 6;
1228 bsize->y_ppem = metrics.y_ppem << 6;
1231 bsize->size = metrics.y_ppem << 6;
1234 if ( bsize->x_ppem && bsize->y_ppem )
/xsrc/external/mit/freetype/dist/src/base/
H A Dftobjs.c2619 FT_Bitmap_Size* bsize = face->available_sizes + i; local in function:ft_open_face_internal
2622 if ( bsize->height < 0 )
2623 bsize->height = -bsize->height;
2624 if ( bsize->x_ppem < 0 )
2625 bsize->x_ppem = -bsize->x_ppem;
2626 if ( bsize->y_ppem < 0 )
2627 bsize->y_ppem = -bsize
2971 FT_Bitmap_Size* bsize = face->available_sizes + i; local in function:FT_Match_Size
3061 FT_Bitmap_Size* bsize; local in function:FT_Select_Metrics
[all...]
/xsrc/external/mit/xedit/dist/
H A Dhook.c94 long bsize; member in struct:_EditInfo
1006 if (length + 2 >= einfo.bsize) {
1007 einfo.bsize = einfo.bsize + 1024;
1008 einfo.buffer = XtRealloc(einfo.buffer, einfo.bsize);
1019 if (length + xlen >= einfo.bsize) {
1020 einfo.bsize += xlen + 1024 - (xlen % 1024);
1022 einfo.bsize);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_lower_io.c1069 nir_intrinsic_instr *bsize = local in function:lower_explicit_io_array_length
1071 bsize->src[0] = nir_src_for_ssa(index);
1072 nir_ssa_dest_init(&bsize->instr, &bsize->dest, 1, 32, NULL);
1073 nir_builder_instr_insert(b, &bsize->instr);
1076 nir_idiv(b, nir_isub(b, &bsize->dest.ssa, offset),
/xsrc/external/mit/xev/dist/
H A Dxev.c169 static int bsize = 8; local in function:do_KeyPress
173 buf = malloc(bsize);
180 nmbbytes = XmbLookupString(xic, e, buf, bsize - 1, &ks, &status);
183 bsize = nmbbytes + 1;
184 buf = realloc(buf, bsize);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c1696 LLVMValueRef bsize = lp_build_const_int32(gallivm, local in function:draw_llvm_generate
1722 tmp = lp_build_sub(&bld, bsize, bld.one);
1779 buffer_size, bsize);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_state_cs.c377 LLVMValueRef bsize[3] = { block_x_size_arg, block_y_size_arg, block_z_size_arg }; local in function:generate_compute
380 system_values.block_size = LLVMBuildInsertElement(builder, system_values.block_size, bsize[i], lp_build_const_int32(gallivm, i), "");
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c2101 LLVMValueRef bsize = lp_build_const_int32(gallivm, local in function:draw_llvm_generate
2127 tmp = lp_build_sub(&bld, bsize, bld.one);
2184 buffer_size, bsize);

Completed in 30 milliseconds