HomeSort by: relevance | last modified time | path
    Searched refs:fn (Results 1 - 25 of 120) sorted by relevancy

1 2 3 4 5

  /xsrc/external/mit/xdm/dist/config/
Xsetup_0 2 xconsole -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail
  /xsrc/external/mit/xorg-server.old/dist/glx/
dispatch.h 48 #define SET_by_offset(disp, offset, fn) \
52 /* __func__, __LINE__, disp, offset, # fn); */ \
56 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
62 #define SET_NewList(disp, fn) ((disp)->NewList = fn)
65 #define SET_EndList(disp, fn) ((disp)->EndList = fn)
68 #define SET_CallList(disp, fn) ((disp)->CallList = fn)
71 #define SET_CallLists(disp, fn) ((disp)->CallLists = fn
    [all...]
  /xsrc/external/mit/MesaLib/src/mesa/main/
dispatch.h 50 #define SET_by_offset(disp, offset, fn) \
54 /* __func__, __LINE__, disp, offset, # fn); */ \
58 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
2981 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
2982 SET_by_offset(disp, _gloffset_NewList, fn);
2992 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2993 SET_by_offset(disp, _gloffset_EndList, fn);
3003 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3004 SET_by_offset(disp, _gloffset_CallList, fn);
3014 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/
hud_cpufreq.c 80 get_file_value(const char *fn, uint64_t *KHz)
82 FILE *fh = fopen(fn, "r");
84 fprintf(stderr, "%s error: %s\n", fn, strerror(errno));
166 add_object(const char *name, const char *fn, int objmode, int cpu_index)
171 strcpy(cfi->sysfs_filename, fn);
189 char fn[128]; local
225 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_cur_freq", basename);
226 if (stat(fn, &stat_buf) < 0)
232 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_min_freq", basename)
    [all...]
hud_nic.c 100 get_nic_bytes(const char *fn, uint64_t *bytes)
102 if (get_file_value(fn, bytes) < 0)
294 char fn[256]; local
295 snprintf(fn, sizeof(fn), "%s/wireless", dirbase);
296 if (stat(fn, &stat_buf) == 0)
308 char fn[256]; local
309 snprintf(fn, sizeof(fn), "%s/wireless", dirbase);
310 if (stat(fn, &stat_buf) == 0)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/
hud_cpufreq.c 80 get_file_value(const char *fn, uint64_t *KHz)
82 FILE *fh = fopen(fn, "r");
84 fprintf(stderr, "%s error: %s\n", fn, strerror(errno));
166 add_object(const char *name, const char *fn, int objmode, int cpu_index)
171 strcpy(cfi->sysfs_filename, fn);
189 char fn[128]; local
225 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_cur_freq", basename);
226 if (stat(fn, &stat_buf) < 0)
232 snprintf(fn, sizeof(fn), "%s/cpufreq/scaling_min_freq", basename)
    [all...]
hud_nic.c 99 get_nic_bytes(const char *fn, uint64_t *bytes)
101 if (get_file_value(fn, bytes) < 0)
293 char fn[256]; local
294 snprintf(fn, sizeof(fn), "%s/wireless", dirbase);
295 if (stat(fn, &stat_buf) == 0)
307 char fn[256]; local
308 snprintf(fn, sizeof(fn), "%s/wireless", dirbase);
309 if (stat(fn, &stat_buf) == 0)
    [all...]
  /xsrc/external/mit/MesaLib.old/src/mesa/main/
dispatch.h 47 #define SET_by_offset(disp, offset, fn) \
51 /* __func__, __LINE__, disp, offset, # fn); */ \
55 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
2508 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
2509 SET_by_offset(disp, _gloffset_NewList, fn);
2519 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2520 SET_by_offset(disp, _gloffset_EndList, fn);
2530 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
2531 SET_by_offset(disp, _gloffset_CallList, fn);
2541 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *))
    [all...]
  /xsrc/external/mit/libXmu/dist/src/
StrToBmap.c 96 String fn; local
125 fn = XtResolvePathname(dpy, "bitmaps", name, "", NULL, NULL, 0, NULL);
126 if (!fn)
127 fn = XtResolvePathname(dpy, "", name, ".xbm", NULL, NULL, 0, NULL);
129 if (fn &&
130 XmuReadBitmapDataFromFile (fn, &width, &height, &data,
LocBitmap.c 153 const char *fn = filename; local
161 fn = name;
178 fn = name;
184 if (XmuReadBitmapDataFromFile (fn, &width, &height, &data,
198 strncpy (srcname, fn, srcnamelen - 1);
  /xsrc/external/mit/glu/dist/src/libtess/
tess.c 276 gluTessCallback( GLUtesselator *tess, GLenum which, _GLUfuncptr fn)
280 tess->callBegin = (fn == NULL) ? &noBegin : (void (GLAPIENTRY *)(GLenum)) fn;
283 tess->callBeginData = (fn == NULL) ?
284 &__gl_noBeginData : (void (GLAPIENTRY *)(GLenum, void *)) fn;
287 tess->callEdgeFlag = (fn == NULL) ? &noEdgeFlag :
288 (void (GLAPIENTRY *)(GLboolean)) fn;
292 tess->flagBoundary = (fn != NULL);
295 tess->callEdgeFlagData= (fn == NULL) ?
296 &__gl_noEdgeFlagData : (void (GLAPIENTRY *)(GLboolean, void *)) fn;
    [all...]
  /xsrc/external/mit/glu/dist/src/libnurbs/interface/
glcurveval.cc 303 OpenGLCurveEvaluator::putCallBack(GLenum which, void (GLAPIENTRY *fn)())
305 OpenGLCurveEvaluator::putCallBack(GLenum which, _GLUfuncptr fn)
311 beginCallBackN = (void (GLAPIENTRY *) (GLenum)) fn;
314 endCallBackN = (void (GLAPIENTRY *) (void)) fn;
317 vertexCallBackN = (void (GLAPIENTRY *) (const GLfloat*)) fn;
320 normalCallBackN = (void (GLAPIENTRY *) (const GLfloat*)) fn;
323 colorCallBackN = (void (GLAPIENTRY *) (const GLfloat*)) fn;
326 texcoordCallBackN = (void (GLAPIENTRY *) (const GLfloat*)) fn;
329 beginCallBackData = (void (GLAPIENTRY *) (GLenum, void*)) fn;
332 endCallBackData = (void (GLAPIENTRY *) (void*)) fn;
    [all...]
glrenderer.h 75 void putSurfCallBack(GLenum which, void (GLAPIENTRY *fn)() )
77 void putSurfCallBack(GLenum which, _GLUfuncptr fn )
80 curveEvaluator.putCallBack(which, fn);
81 surfaceEvaluator.putCallBack(which, fn);
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
lower_subroutine.cpp 90 ir_function *fn = this->state->subroutines[s]; local
91 ir_constant *lc = new(mem_ctx)ir_constant(fn->subroutine_index);
95 for (int i = 0; i < fn->num_subroutine_types; i++) {
96 if (ir->sub_var->type->without_array() == fn->subroutine_types[i]) {
110 fn->exact_matching_signature(this->state,
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
lower_subroutine.cpp 90 ir_function *fn = this->state->subroutines[s]; local
91 ir_constant *lc = new(mem_ctx)ir_constant(fn->subroutine_index);
95 for (int i = 0; i < fn->num_subroutine_types; i++) {
96 if (ir->sub_var->type->without_array() == fn->subroutine_types[i]) {
110 fn->exact_matching_signature(this->state,
  /xsrc/external/mit/lndir/dist/
lndir.c 140 dodir (const char *fn, /* name of "from" directory, either absolute or
144 int rel) /* if true, prepend "../" to fn before using */
158 msg ("%s: From and to directories are identical!", fn);
171 if (strlcat (buf, fn, sizeof(buf)) >= sizeof(buf))
172 quit(1, "Pathname too long: %s", fn);
174 strcat (buf, fn);
369 const char *fn, *tn; local
392 fn = argv[0];
407 if (stat (fn, &fs) < 0)
408 quiterr (1, fn);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/
pan_trace.c 63 char fn[128]; local
64 snprintf(fn, 128, "%s/control.log", base);
65 pan_control_log = fopen(fn, "w+");
pan_blend_shaders.c 103 nir_function *fn = nir_function_create(shader, "main"); local
104 nir_function_impl *impl = nir_function_impl_create(fn);
  /xsrc/external/mit/fontconfig/dist/fc-lang/
fc-lang.py 113 for fn, num, line in lines:
129 print('ERROR: {} line {}: parse error (too many parts)'.format(fn, num))
174 for i, fn in enumerate(args.orth_files):
175 orth_entries[fn] = i
177 for fn in sorted(orth_entries.keys()):
178 lines = read_orth_file(fn)
179 charset = parse_orth_file(fn, lines)
183 name = get_name(fn)
189 country.append(orth_entries[fn]) # maps to original index
193 LangCountrySets[language_family] += [orth_entries[fn]]
335 fn = '{}.orth'.format(names[i]) variable
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/pandecode/
cmdline.c 76 char *fn = NULL; local
77 asprintf(&fn, "%s/%s", base, name);
79 FILE *fp = fopen(fn, "rb");
80 free(fn);
  /xsrc/external/mit/fontconfig/dist/doc/
extract-man-list.py 36 def read_fncs_file(fn):
39 with open(fn, 'r', encoding='utf8') as f:
  /xsrc/external/mit/xorg-server.old/dist/miext/rootless/
rootlessCommon.h 131 #define SCREEN_UNWRAP(screen, fn) \
132 screen->fn = SCREENREC(screen)->fn;
134 #define SCREEN_WRAP(screen, fn) \
135 SCREENREC(screen)->fn = screen->fn; \
136 screen->fn = Rootless##fn
  /xsrc/external/mit/xorg-server/dist/miext/rootless/
rootlessCommon.h 135 #define SCREEN_UNWRAP(screen, fn) \
136 screen->fn = SCREENREC(screen)->fn;
138 #define SCREEN_WRAP(screen, fn) \
139 SCREENREC(screen)->fn = screen->fn; \
140 screen->fn = Rootless##fn
  /xsrc/external/mit/fontconfig/dist/test/
test-migration.c 153 char xdg[256], confd[256], fn[256], nfn[256], ud[256], nud[256]; local
180 strcpy (fn, tmp);
181 strcpy (&fn[len], "/.fonts.conf");
189 if ((fp = fopen (fn, "wb")) == NULL)
191 fprintf (stderr, "Unable to create a config file: %s\n", fn);
  /xsrc/external/mit/pixman/dist/test/
fence-image-self-test.c 76 do_expect_signal (void (*fn)(void *), void *data)
88 (*fn)(data);
93 /* Check that calling fn(data) causes a segmentation fault.
101 expect_signal (void (*fn)(void *), void *data)
111 do_expect_signal (fn, data); /* never returns */

Completed in 117 milliseconds

1 2 3 4 5