HomeSort by relevance Sort by last modified time
    Searched refs:fa (Results 1 - 25 of 44) sorted by null

1 2

  /external/libffi/testsuite/libffi.call/
many.c 41 float fa[13]; local
48 values[i] = &fa[i];
49 fa[i] = (float) i;
58 ff = many(fa[0], fa[1],
59 fa[2], fa[3],
60 fa[4], fa[5],
61 fa[6], fa[7]
    [all...]
many_win32.c 34 float fa[13]; local
41 values[ul] = &fa[ul];
42 fa[ul] = (float) ul;
49 ff = stdcall_many(fa[0], fa[1],
50 fa[2], fa[3],
51 fa[4], fa[5],
52 fa[6], fa[7]
    [all...]
  /external/quake/quake/src/QW/client/
gl_rsurf.c 61 void R_RenderDynamicLightmaps (msurface_t *fa);
784 void R_RenderBrushPoly (msurface_t *fa)
794 if (fa->flags & SURF_DRAWSKY)
796 EmitBothSkyLayers (fa);
800 t = R_TextureAnimation (fa->texinfo->texture);
803 if (fa->flags & SURF_DRAWTURB)
805 EmitWaterPolys (fa);
809 if (((r_viewleaf->contents==CONTENTS_EMPTY && (fa->flags & SURF_UNDERWATER)) ||
810 (r_viewleaf->contents!=CONTENTS_EMPTY && !(fa->flags & SURF_UNDERWATER)))
811 && !(fa->flags & SURF_DONTWARP)
    [all...]
gl_warp.c 146 void GL_SubdivideSurface (msurface_t *fa)
154 warpface = fa;
160 for (i=0 ; i<fa->numedges ; i++)
162 lindex = loadmodel->surfedges[fa->firstedge + i];
193 void EmitWaterPolys (msurface_t *fa)
201 for (p=fa->polys ; p ; p=p->next)
234 void EmitSkyPolys (msurface_t *fa)
243 for (p=fa->polys ; p ; p=p->next)
281 void EmitBothSkyLayers (msurface_t *fa)
289 EmitSkyPolys (fa);
309 msurface_t *fa; local
900 msurface_t *fa; local
    [all...]
r_draw.c 386 void R_RenderFace (msurface_t *fa, int clipflags)
404 if ((edge_p + fa->numedges + 4) >= edge_max)
406 r_outofedges += fa->numedges;
432 for (i=0 ; i<fa->numedges ; i++)
434 lindex = currententity->model->surfedges[fa->firstedge + i];
553 surface_p->data = (void *)fa;
555 surface_p->flags = fa->flags;
562 pplane = fa->plane;
699 void R_RenderPoly (msurface_t *fa, int clipflags)
733 lnumverts = fa->numedges
    [all...]
glquake.h 280 void GL_SubdivideSurface (msurface_t *fa);
281 void EmitBothSkyLayers (msurface_t *fa);
282 void EmitWaterPolys (msurface_t *fa);
283 void EmitSkyPolys (msurface_t *fa);
r_local.h 134 void R_RenderFace (msurface_t *fa, int clipflags);
135 void R_RenderPoly (msurface_t *fa, int clipflags);
  /external/quake/quake/src/WinQuake/
gl_rsurf.cpp 61 void R_RenderDynamicLightmaps (msurface_t *fa);
854 void R_RenderBrushPoly (msurface_t *fa)
864 if (fa->flags & SURF_DRAWSKY)
866 EmitBothSkyLayers (fa);
870 t = R_TextureAnimation (fa->texinfo->texture);
873 if (fa->flags & SURF_DRAWTURB)
875 EmitWaterPolys (fa);
879 if (fa->flags & SURF_UNDERWATER)
880 DrawGLWaterPoly (fa->polys);
882 DrawGLPoly (fa->polys)
    [all...]
gl_warp.cpp 146 void GL_SubdivideSurface (msurface_t *fa)
155 warpface = fa;
161 for (i=0 ; i<fa->numedges ; i++)
163 lindex = loadmodel->surfedges[fa->firstedge + i];
194 void EmitWaterPolys (msurface_t *fa)
202 for (p=fa->polys ; p ; p=p->next)
255 void EmitSkyPolys (msurface_t *fa)
264 for (p=fa->polys ; p ; p=p->next)
326 void EmitBothSkyLayers (msurface_t *fa)
338 EmitSkyPolys (fa);
358 msurface_t *fa; local
949 msurface_t *fa; local
    [all...]
r_draw.cpp 386 void R_RenderFace (msurface_t *fa, int clipflags)
404 if ((edge_p + fa->numedges + 4) >= edge_max)
406 r_outofedges += fa->numedges;
432 for (i=0 ; i<fa->numedges ; i++)
434 lindex = currententity->model->surfedges[fa->firstedge + i];
553 surface_p->data = (void *)fa;
555 surface_p->flags = fa->flags;
562 pplane = fa->plane;
699 void R_RenderPoly (msurface_t *fa, int clipflags)
733 lnumverts = fa->numedges;
    [all...]
quakedef.h 387 void GL_SubdivideSurface (msurface_t *fa);
398 void R_RenderBrushPoly (msurface_t *fa);
403 void EmitWaterPolys (msurface_t *fa);
404 void EmitSkyPolys (msurface_t *fa);
405 void EmitBothSkyLayers (msurface_t *fa);
r_local.h 133 void R_RenderFace (msurface_t *fa, int clipflags);
134 void R_RenderPoly (msurface_t *fa, int clipflags);
  /external/skia/src/core/
SkFloat.cpp 309 float fa, fb; local
350 fa = (float)aa / 65536.0f;
352 a.assertEquals(fa);
354 fa = a.getFloat();
357 c.assertEquals(fa * fb, 1);
365 c.assertEquals(fa / fb, 1);
377 fa = -fa;
385 c.assertEquals(sk_float_sqrt(fa), 2);
  /external/webkit/WebCore/platform/
Arena.cpp 264 for (const Arena *fa = arena_freelist; fa; fa = fa->next )
265 total += (fa->limit - fa->base);
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerTester.java 80 File[] fa = wavFiles.toArray(new File[wavFiles.size()]); local
81 Arrays.sort(fa);
82 mWavFiles = new WavFile[fa.length];
84 mWavFiles[i] = new WavFile(fa[i]);
  /external/skia/src/gl/
SkGL.cpp 31 SkFixed fa = byte2fixed(alpha); local
32 glColor4x(fa, fa, fa, fa);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equivalent.h 73 // in acceptor 'fa'.
74 static bool IsFinal(const Fst<Arc> &fa, MappedId s) {
77 false : (fa.Final(UnMapState(s)) != Weight::Zero());
  /frameworks/base/media/libstagefright/
MP3Extractor.cpp 668 float fa, fb; local
670 fa = 0.0f;
672 fa = (float)mTableOfContents[a-1];
679 fx = fa + (fb-fa)*(percent-a);
  /external/chromium/third_party/icu/source/data/rbnf/
rbnffiles.mk 40 es.txt et.txt fa.txt fa_AF.txt fi.txt\
  /external/icu4c/data/rbnf/
rbnffiles.mk 40 es.txt et.txt fa.txt fa_AF.txt fi.txt\
  /system/core/adb/
sysdeps_win32.c 1191 FH fa, fb; local
1194 fa = _fh_alloc( &_fh_socketpair_class );
1197 if (!fa || !fb)
1209 fa->fh_pair = pair;
1212 pair->a_fd = fa;
1214 sv[0] = _fh_to_int(fa);
1222 snprintf( fa->name, sizeof(fa->name), "%d(pair:%d)", sv[0], sv[1] );
1229 _fh_close(fa);
    [all...]
  /external/chromium/third_party/icu/source/data/locales/
reslocal.mk 110 fa.txt\
  /external/e2fsprogs/intl/
config.charset 218 for l in fa fa_IR; do
  /external/qemu/fpu/
softfloat-native.c 34 #define remainderf(fa, fb) ((float)remainder(fa, fb))
  /external/chromium/third_party/icu/source/common/
locmap.c 248 static const ILcidPosixElement fa[] = { variable
249 {0x29, "fa"},
603 ILCID_POSIX_MAP(fa), /* fa Persian/Farsi 0x29 */
604 ILCID_POSIX_MAP(fa_AF), /* fa Persian/Dari 0x8c */

Completed in 534 milliseconds

1 2