| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | tu_util.c | 38 /** Log an error message. */ 39 void tu_printflike(1, 2) tu_loge(const char *format, ...) argument 43 va_start(va, format); 44 tu_loge_v(format, va); 50 tu_loge_v(const char *format, va_list va) argument 52 fprintf(stderr, "vk: error: "); 53 vfprintf(stderr, format, va); 57 /** Log an error message. */ 58 void tu_printflike(1, 2) tu_logi(const char *format, ...) argument 62 va_start(va, format); 69 tu_logi_v(const char * format,va_list va) argument 77 __tu_finishme(const char * file,int line,const char * format,...) argument 90 __vk_errorf(struct tu_instance * instance,VkResult error,const char * file,int line,const char * format,...) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/util/ |
| H A D | vk_log.h | 35 #define vk_logd(objects_macro, format, ...) \ 38 objects_macro, __FILE__, __LINE__, format, ## __VA_ARGS__) 40 #define vk_logi(objects_macro, format, ...) \ 43 objects_macro, __FILE__, __LINE__, format, ## __VA_ARGS__) 45 #define vk_logw(objects_macro, format, ...) \ 48 objects_macro, __FILE__, __LINE__, format, ## __VA_ARGS__) 50 #define vk_loge(objects_macro, format, ...) \ 53 objects_macro, __FILE__, __LINE__, format, ## __VA_ARGS__) 55 #define vk_perf(objects_macro, format, ...) \ 58 objects_macro, __FILE__, __LINE__, format, ## __VA_ARGS_ [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_util.c | 34 /** Log an error message. */ 36 anv_loge(const char *format, ...) argument 40 va_start(va, format); 41 anv_loge_v(format, va); 47 anv_loge_v(const char *format, va_list va) argument 49 intel_loge_v(format, va); 55 const char *file, int line, const char *format, ...) 61 va_start(ap, format); 62 vsnprintf(buffer, sizeof(buffer), format, ap); 81 VkDebugReportObjectTypeEXT type, VkResult error, 53 __anv_perf_warn(struct anv_instance * instance,const void * object,VkDebugReportObjectTypeEXT type,const char * file,int line,const char * format,...) argument 80 __vk_errorv(struct anv_instance * instance,const void * object,VkDebugReportObjectTypeEXT type,VkResult error,const char * file,int line,const char * format,va_list ap) argument 115 __vk_errorf(struct anv_instance * instance,const void * object,VkDebugReportObjectTypeEXT type,VkResult error,const char * file,int line,const char * format,...) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | radv_util.c | 37 /** Log an error message. */ 39 radv_loge(const char *format, ...) argument 43 va_start(va, format); 44 radv_loge_v(format, va); 50 radv_loge_v(const char *format, va_list va) argument 52 fprintf(stderr, "vk: error: "); 53 vfprintf(stderr, format, va); 57 /** Log an error message. */ 59 radv_logi(const char *format, ...) argument 63 va_start(va, format); 70 radv_logi_v(const char * format,va_list va) argument 78 __radv_finishme(const char * file,int line,const char * format,...) argument 91 __vk_errorf(struct radv_instance * instance,VkResult error,const char * file,int line,const char * format,...) argument [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| H A D | glut_util.c | 32 __glutWarning(char *format,...) argument 36 va_start(args, format); 39 vfprintf(stderr, format, args); 48 GLenum error; local in function:glutReportErrors 50 while ((error = glGetError()) != GL_NO_ERROR) 51 __glutWarning("GL error: %s", gluErrorString(error)); 56 __glutFatalError(char *format,...) argument 60 va_start(args, format); 63 vfprintf(stderr, format, arg 70 __glutFatalUsage(char * format,...) argument [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | glut_util.c | 32 __glutWarning(char *format,...) argument 36 va_start(args, format); 39 vfprintf(stderr, format, args); 48 GLenum error; local in function:glutReportErrors 50 while ((error = glGetError()) != GL_NO_ERROR) 51 __glutWarning("GL error: %s", gluErrorString(error)); 56 __glutFatalError(char *format,...) argument 60 va_start(args, format); 63 vfprintf(stderr, format, arg 75 __glutFatalUsage(char * format,...) argument [all...] |
| /xsrc/external/mit/fontconfig/dist/src/ |
| H A D | ftglue.c | 18 ftglue_log( const char* format, ... ) 22 va_start( ap, format ); 23 vfprintf( stderr, format, ap ); 39 FT_Error error = 0; local in function:ftglue_qalloc 46 error = FT_Err_Out_Of_Memory; 49 *perror = error; 54 #define QALLOC(ptr,size) ( (ptr) = ftglue_qalloc( memory, (size), &error ), error != 0 ) 85 FT_Error error = 0; local in function:ftglue_stream_seek 90 error 106 FT_Error error = FT_Err_Ok; local in function:ftglue_stream_frame_enter 173 FT_Error error; local in function:ftglue_face_goto_table [all...] |
| /xsrc/external/mit/xorg-server/dist/os/ |
| H A D | xprintf.c | 81 #error "no working va_copy was found" 90 * (contents undefined on error) 91 * @param format printf style format string 93 * @return size of allocated buffer, or -1 on error. 96 Xvasprintf(char **ret, const char *_X_RESTRICT_KYWD format, va_list va) argument 99 return vasprintf(ret, format, va); 105 size = vsnprintf(NULL, 0, format, va2); 112 vsnprintf(*ret, size + 1, format, va); 127 * (contents undefined on error) 133 Xasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,...) argument 156 XNFvasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,va_list va) argument 178 XNFasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,...) argument 202 Xvscnprintf(char * s,int n,const char * format,va_list args) argument 223 Xscnprintf(char * s,int n,const char * format,...) argument 235 Xvprintf(const char * format,va_list va) argument 246 Xprintf(const char * format,...) argument 259 XNFvprintf(const char * format,va_list va) argument 269 XNFprintf(const char * format,...) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | ftglyph.c | 64 FT_Error error = FT_Err_Ok; local in function:ft_bitmap_glyph_init 68 if ( slot->format != FT_GLYPH_FORMAT_BITMAP ) 70 error = FT_THROW( Invalid_Glyph_Format ); 86 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap ); 90 return error; 164 FT_Error error = FT_Err_Ok; local in function:FT_DEFINE_GLYPH 170 /* check format in glyph slot */ 171 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE ) 173 error = FT_THROW( Invalid_Glyph_Format ); 178 error 208 FT_Error error; local in function:ft_outline_glyph_copy 294 FT_Error error; local in function:FT_DEFINE_GLYPH 320 FT_Error error; local in function:FT_Glyph_Copy 363 FT_New_Glyph(FT_Library library,FT_Glyph_Format format,FT_Glyph * aglyph) argument 404 FT_Error error; local in function:FT_Get_Glyph 460 FT_Error error = FT_Err_Ok; local in function:FT_Glyph_Transform 543 FT_Error error = FT_Err_Ok; local in function:FT_Glyph_To_Bitmap [all...] |
| H A D | ftsynth.c | 59 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE ) 93 FT_Error error; local in function:FT_GlyphSlot_Embolden 103 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE && 104 slot->format != FT_GLYPH_FORMAT_BITMAP ) 112 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE ) 115 else /* slot->format == FT_GLYPH_FORMAT_BITMAP */ 127 * about the cause of error. 135 error = FT_GlyphSlot_Own_Bitmap( slot ); 136 if ( error ) 139 error [all...] |
| /xsrc/external/mit/freetype/dist/src/pcf/ |
| H A D | pcfread.c | 86 FT_FRAME_ULONG_LE( format ), 97 FT_Error error; local in function:pcf_read_TOC 131 return error; 170 error = FT_THROW( Invalid_Offset ); 209 error = FT_THROW( Invalid_Table ); 218 error = FT_THROW( Invalid_Table ); 244 FT_TRACE4(( " %d: type=%s, format=0x%lX," 247 tables[i].format, 259 return error; 319 FT_ULong format, 318 pcf_get_metric(FT_Stream stream,FT_ULong format,PCF_Metric metric) argument 322 FT_Error error = FT_Err_Ok; local in function:pcf_get_metric 379 FT_Error error = FT_ERR( Invalid_File_Format ); local in function:pcf_seek_to_table_type 485 FT_ULong format, size; local in function:pcf_get_properties 486 FT_Error error; local in function:pcf_get_properties 681 FT_Error error; local in function:pcf_get_metrics 683 FT_ULong format, size; local in function:pcf_get_metrics 816 FT_Error error; local in function:pcf_get_bitmaps 818 FT_ULong format, size, pos; local in function:pcf_get_bitmaps 980 FT_Error error; local in function:pcf_get_encodings 982 FT_ULong format, size; local in function:pcf_get_encodings 1194 FT_ULong format, size; local in function:pcf_get_accel 1195 FT_Error error; local in function:pcf_get_accel 1308 FT_Error error = FT_Err_Ok; local in function:pcf_interpret_style 1420 FT_Error error; local in function:pcf_load_font [all...] |
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| H A D | xprintf.c | 79 # error "no working va_copy was found" 88 * (contents undefined on error) 89 * @param format printf style format string 91 * @return size of allocated buffer, or -1 on error. 94 Xvasprintf(char **ret, const char * _X_RESTRICT_KYWD format, va_list va) argument 97 return vasprintf(ret, format, va); 103 size = vsnprintf(NULL, 0, format, va2); 110 vsnprintf(*ret, size + 1, format, va); 125 * (contents undefined on error) 131 Xasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,...) argument 153 XNFvasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,va_list va) argument 175 XNFasprintf(char ** ret,const char * _X_RESTRICT_KYWD format,...) argument 187 Xvprintf(const char * format,va_list va) argument 197 Xprintf(const char * format,...) argument 209 XNFvprintf(const char * format,va_list va) argument 218 XNFprintf(const char * format,...) argument [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | GetProp.c | 50 xError error = {0}; local in function:XGetWindowProperty 53 them and fail to check the return code for an error. */ 67 error.sequenceNumber = dpy->request; 77 int format = reply.format; local in function:XGetWindowProperty 84 format = -1; /* fall through to default error case */ 86 switch (format) { 116 * the server sent back a property with an invalid format. 117 * This is a BadImplementation error [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/ |
| H A D | memory.cpp | 26 #include "core/format.hpp" 45 throw error(CL_INVALID_VALUE); 49 throw error(CL_INVALID_VALUE); 61 throw error(CL_INVALID_VALUE); 67 throw error(CL_INVALID_VALUE); 85 throw error(CL_INVALID_HOST_PTR); 91 throw error(CL_INVALID_BUFFER_SIZE); 96 } catch (error &e) { 114 throw error(CL_INVALID_VALUE); 117 throw error(CL_INVALID_BUFFER_SIZ 132 clCreateImage(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,const cl_image_desc * desc,void * host_ptr,cl_int * r_errcode) argument 223 clCreateImage2D(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,size_t width,size_t height,size_t row_pitch,void * host_ptr,cl_int * r_errcode) argument 234 clCreateImage3D(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,size_t width,size_t height,size_t depth,size_t row_pitch,size_t slice_pitch,void * host_ptr,cl_int * r_errcode) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/sfnt/ |
| H A D | ttpost.c | 164 FT_Error error; local in function:load_format_20 184 error = FT_THROW( Invalid_File_Format ); 309 return error; 319 FT_Error error; local in function:load_format_25 335 error = FT_THROW( Invalid_File_Format ); 355 error = FT_THROW( Invalid_File_Format ); 376 return error; 384 FT_Error error; local in function:load_post_names 385 FT_Fixed format; local in function:load_post_names 394 error 426 FT_Fixed format; local in function:tt_face_free_ps_names 491 FT_Error error; local in function:tt_face_get_ps_name 493 FT_Fixed format; local in function:tt_face_get_ps_name [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/dri/ |
| H A D | dri_helpers.h | 32 int dri_format; /* image format */ 40 uint32_t dri_format; /* plane format */ 50 dri2_get_mapping_by_format(int format); 53 dri2_get_pipe_format_for_dri_format(int format); 78 unsigned *error); 85 int depth, int level, unsigned *error,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | formats.c | 48 * Base format is one of GL_RED, GL_RG, GL_RGB, GL_RGBA, GL_ALPHA, 84 _mesa_get_format_info(mesa_format format) argument 86 const struct gl_format_info *info = &format_info[format]; 88 assert(info->Name == format); 93 /** Return string name of format (for debugging) */ 95 _mesa_get_format_name(mesa_format format) argument 97 const struct gl_format_info *info = _mesa_get_format_info(format); 104 * Return bytes needed to store a block of pixels in the given format. 111 _mesa_get_format_bytes(mesa_format format) argument 113 if (_mesa_format_is_mesa_array_format(format)) { 132 _mesa_get_format_bits(mesa_format format,GLenum pname) argument 187 _mesa_get_format_max_bits(mesa_format format) argument 205 _mesa_get_format_layout(mesa_format format) argument 223 _mesa_get_format_datatype(mesa_format format) argument 230 get_base_format_for_array_format(mesa_array_format format) argument 302 _mesa_get_format_base_format(uint32_t format) argument 321 _mesa_get_format_block_size(mesa_format format,GLuint * bw,GLuint * bh) argument 341 _mesa_get_format_block_size_3d(mesa_format format,GLuint * bw,GLuint * bh,GLuint * bd) argument 373 _mesa_get_format_swizzle(mesa_format format,uint8_t swizzle_out[4]) argument 380 _mesa_array_format_flip_channels(mesa_array_format format) argument 415 _mesa_format_to_array_format(mesa_format format) argument 501 _mesa_is_format_compressed(mesa_format format) argument 512 _mesa_is_format_packed_depth_stencil(mesa_format format) argument 524 _mesa_is_format_integer_color(mesa_format format) argument 538 _mesa_is_format_unsigned(mesa_format format) argument 549 _mesa_is_format_signed(mesa_format format) argument 568 _mesa_is_format_integer(mesa_format format) argument 579 _mesa_is_format_color_format(mesa_format format) argument 598 _mesa_get_format_color_encoding(mesa_format format) argument 610 _mesa_is_format_etc2(mesa_format format) argument 634 _mesa_is_format_astc_2d(mesa_format format) argument 677 _mesa_get_uncompressed_format(mesa_format format) argument 746 _mesa_format_num_components(mesa_format format) argument 765 _mesa_format_has_color_component(mesa_format format,int component) argument 794 _mesa_format_image_size(mesa_format format,GLsizei width,GLsizei height,GLsizei depth) argument 822 _mesa_format_image_size64(mesa_format format,GLsizei width,GLsizei height,GLsizei depth) argument 848 _mesa_format_row_stride(mesa_format format,GLsizei width) argument 872 _mesa_uncompressed_format_to_type_and_comps(mesa_format format,GLenum * datatype,GLuint * comps) argument 1444 _mesa_format_matches_format_and_type(mesa_format mesa_format,GLenum format,GLenum type,GLboolean swapBytes,GLenum * error) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/api/ |
| H A D | memory.cpp | 23 #include "util/format/u_format.h" 27 #include "core/format.hpp" 51 throw error(CL_INVALID_VALUE); 55 throw error(CL_INVALID_VALUE); 59 throw error(CL_INVALID_VALUE); 71 throw error(CL_INVALID_VALUE); 77 throw error(CL_INVALID_VALUE); 92 throw error(CL_INVALID_PROPERTY); 115 throw error(CL_INVALID_HOST_PTR); 121 throw error(CL_INVALID_BUFFER_SIZ 169 clCreateImageWithProperties(cl_context d_ctx,const cl_mem_properties * d_properties,cl_mem_flags d_flags,const cl_image_format * format,const cl_image_desc * desc,void * host_ptr,cl_int * r_errcode) argument 283 clCreateImage(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,const cl_image_desc * desc,void * host_ptr,cl_int * r_errcode) argument 293 clCreateImage2D(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,size_t width,size_t height,size_t row_pitch,void * host_ptr,cl_int * r_errcode) argument 304 clCreateImage3D(cl_context d_ctx,cl_mem_flags d_flags,const cl_image_format * format,size_t width,size_t height,size_t depth,size_t row_pitch,size_t slice_pitch,void * host_ptr,cl_int * r_errcode) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/raster/ |
| H A D | ftrend1.c | 58 FT_Error error = FT_Err_Ok; local in function:ft_raster1_transform 61 if ( slot->format != render->glyph_format ) 63 error = FT_THROW( Invalid_Argument ); 74 return error; 86 if ( slot->format == render->glyph_format ) 98 FT_Error error = FT_Err_Ok; local in function:ft_raster1_render 108 /* check glyph image format */ 109 if ( slot->format != render->glyph_format ) 111 error = FT_THROW( Invalid_Argument ); 131 error [all...] |
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| H A D | ftglyph.h | 39 #error "freetype.h of FreeType 1 has been loaded!" 40 #error "Please fix the directory search order for header files" 41 #error "so that freetype.h of FreeType 2 is found first." 97 * width in 16.16 fixed-point format. 106 * format :: 107 * The format of the glyph's image. 116 FT_Glyph_Format format; member in struct:FT_GlyphRec_ 161 * `glyph->format == FT_GLYPH_FORMAT_BITMAP`. This lets you access the 207 * `glyph->format == FT_GLYPH_FORMAT_OUTLINE`. This lets you access the 238 * format [all...] |
| /xsrc/external/mit/xorg-server.old/dist/render/ |
| H A D | picture.c | 108 PictFormatPtr format = ps->formats; local in function:PictureStoreColors 113 if (format->type == PictTypeIndexed && 114 format->index.pColormap == pColormap) 116 (*ps->UpdateIndexed) (pScreen, format, ndef, pdef); 119 format++; 141 CARD32 format; member in struct:_formatInit 148 CARD32 format, 154 if (formats[n].format == format && formats[n].depth == depth) 156 formats[nformat].format 146 addFormat(FormatInitRec formats[256],int nformat,CARD32 format,CARD8 depth) argument 169 CARD32 format; local in function:PictureCreateDefaultFormats 442 PictureInitIndexedFormat(ScreenPtr pScreen,PictFormatPtr format) argument 469 PictFormatPtr format; local in function:PictureInitIndexedFormats 523 PictFormatPtr format; local in function:PictureMatchVisual 576 PictFormatPtr format; local in function:PictureMatchFormat 748 CreatePicture(Picture pid,DrawablePtr pDrawable,PictFormatPtr pFormat,Mask vmask,XID * vlist,ClientPtr client,int * error) argument 859 initGradient(SourcePictPtr pGradient,int stopCount,xFixed * stopPoints,xRenderColor * stopColors,int * error) argument 912 CreateSolidPicture(Picture pid,xRenderColor * color,int * error) argument 934 CreateLinearGradientPicture(Picture pid,xPointFixed * p1,xPointFixed * p2,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 973 CreateRadialGradientPicture(Picture pid,xPointFixed * inner,xPointFixed * outer,xFixed innerRadius,xFixed outerRadius,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 1023 CreateConicalGradientPicture(Picture pid,xPointFixed * center,xFixed angle,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 1073 int error = 0; local in function:ChangePicture [all...] |
| /xsrc/external/mit/freetype/dist/src/cache/ |
| H A D | ftcbasic.c | 100 FT_Error error; local in function:ftc_basic_family_get_count 105 error = FTC_Manager_LookupFace( manager, family->attrs.scaler.face_id, 108 if ( error || !face ) 118 if ( !error ) 132 FT_Error error; local in function:ftc_basic_family_load_bitmap 136 error = FTC_Manager_LookupSize( manager, &family->attrs.scaler, &size ); 137 if ( !error ) 142 error = FT_Load_Glyph( 146 if ( !error ) 150 return error; 161 FT_Error error; local in function:ftc_basic_family_load_glyph 293 FT_Error error; local in function:FTC_ImageCache_Lookup 374 FT_Error error; local in function:FTC_ImageCache_LookupScaler 491 FT_Error error; local in function:FTC_SBitCache_Lookup 574 FT_Error error; local in function:FTC_SBitCache_LookupScaler [all...] |
| /xsrc/external/mit/xorg-server/dist/render/ |
| H A D | picture.c | 117 PictFormatPtr format = ps->formats; local in function:PictureStoreColors 121 if (format->type == PictTypeIndexed && 122 format->index.pColormap == pColormap) { 123 (*ps->UpdateIndexed) (pScreen, format, ndef, pdef); 126 format++; 147 CARD32 format; member in struct:_formatInit 152 addFormat(FormatInitRec formats[256], int *nformat, CARD32 format, CARD8 depth) argument 157 if (formats[n].format == format && formats[n].depth == depth) 159 formats[*nformat].format 172 CARD32 format; local in function:PictureCreateDefaultFormats 415 PictureInitIndexedFormat(ScreenPtr pScreen,PictFormatPtr format) argument 447 PictFormatPtr format; local in function:PictureInitIndexedFormats 500 PictFormatPtr format; local in function:PictureMatchVisual 548 PictFormatPtr format; local in function:PictureMatchFormat 744 CreatePicture(Picture pid,DrawablePtr pDrawable,PictFormatPtr pFormat,Mask vmask,XID * vlist,ClientPtr client,int * error) argument 806 initGradient(SourcePictPtr pGradient,int stopCount,xFixed * stopPoints,xRenderColor * stopColors,int * error) argument 860 CreateSolidPicture(Picture pid,xRenderColor * color,int * error) argument 884 CreateLinearGradientPicture(Picture pid,xPointFixed * p1,xPointFixed * p2,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 922 CreateRadialGradientPicture(Picture pid,xPointFixed * inner,xPointFixed * outer,xFixed innerRadius,xFixed outerRadius,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 967 CreateConicalGradientPicture(Picture pid,xPointFixed * center,xFixed angle,int nStops,xFixed * stops,xRenderColor * colors,int * error) argument 1047 int error = 0; local in function:ChangePicture [all...] |
| /xsrc/external/mit/freetype/dist/src/pfr/ |
| H A D | pfrgload.c | 132 FT_Error error; local in function:pfr_glyph_line_to 138 error = FT_THROW( Invalid_Table ); 143 error = FT_GLYPHLOADER_CHECK_POINTS( loader, 1, 0 ); 144 if ( !error ) 156 return error; 168 FT_Error error; local in function:pfr_glyph_curve_to 174 error = FT_THROW( Invalid_Table ); 179 error = FT_GLYPHLOADER_CHECK_POINTS( loader, 3, 0 ); 180 if ( !error ) 197 return error; 206 FT_Error error; local in function:pfr_glyph_move_to 253 FT_Error error = FT_Err_Ok; local in function:pfr_glyph_load_simple 359 FT_UInt format, format_low, args_format = 0, args_count, n; local in function:pfr_glyph_load_simple 563 FT_Error error = FT_Err_Ok; local in function:pfr_glyph_load_compound 624 FT_UInt format; local in function:pfr_glyph_load_compound 728 FT_Error error; local in function:pfr_glyph_load_rec [all...] |
| /xsrc/external/mit/xorg-server.old/dist/glx/ |
| H A D | singlepix.c | 49 GLenum format, type; local in function:__glXDisp_ReadPixels 54 int error; local in function:__glXDisp_ReadPixels 59 cx = __glXForceCurrent(cl, __GLX_GET_SINGLE_CONTEXT_TAG(pc), &error); 61 return error; 67 format = *(GLenum *)(pc + 16); 71 compsize = __glReadPixels_size(format,type,width,height); 104 GLenum format, type, target; local in function:__glXDisp_GetTexImage 108 int error; local in function:__glXDisp_GetTexImage 114 cx = __glXForceCurrent(cl, __GLX_GET_SINGLE_CONTEXT_TAG(pc), &error); 116 return error; 169 int error; local in function:__glXDisp_GetPolygonStipple 203 GLenum format, type, target; local in function:GetSeparableFilter 207 int error; local in function:GetSeparableFilter 284 GLenum format, type, target; local in function:GetConvolutionFilter 288 int error; local in function:GetConvolutionFilter 361 GLenum format, type, target; local in function:GetHistogram 365 int error; local in function:GetHistogram 427 GLenum format, type, target; local in function:GetMinmax 431 int error; local in function:GetMinmax 485 GLenum format, type, target; local in function:GetColorTable 489 int error; local in function:GetColorTable [all...] |