/external/quake/quake/src/WinQuake/ |
D | r_aclip.cpp | 26 static finalvert_t fv[2][8]; variable 29 void R_AliasProjectFinalVert (finalvert_t *fv, auxvert_t *av); 52 pav0 = &av[pfv0 - &fv[0][0]]; in R_Alias_clip_z() 53 pav1 = &av[pfv1 - &fv[0][0]]; in R_Alias_clip_z() 57 scale = (ALIAS_Z_CLIP_PLANE - pav0->fv[2]) / in R_Alias_clip_z() 58 (pav1->fv[2] - pav0->fv[2]); in R_Alias_clip_z() 60 avout.fv[0] = pav0->fv[0] + (pav1->fv[0] - pav0->fv[0]) * scale; in R_Alias_clip_z() 61 avout.fv[1] = pav0->fv[1] + (pav1->fv[1] - pav0->fv[1]) * scale; in R_Alias_clip_z() 62 avout.fv[2] = ALIAS_Z_CLIP_PLANE; in R_Alias_clip_z() 70 scale = (ALIAS_Z_CLIP_PLANE - pav1->fv[2]) / in R_Alias_clip_z() [all …]
|
D | r_alias.cpp | 75 void R_AliasTransformAndProjectFinalVerts (finalvert_t *fv, 79 void R_AliasTransformFinalVert (finalvert_t *fv, auxvert_t *av, 81 void R_AliasProjectFinalVert (finalvert_t *fv, auxvert_t *av); 146 R_AliasTransformVector (&basepts[i][0], &viewaux[i].fv[0]); in R_AliasCheckBBox() 148 if (viewaux[i].fv[2] < ALIAS_Z_CLIP_PLANE) in R_AliasCheckBBox() 156 if (viewaux[i].fv[2] < minz) in R_AliasCheckBBox() 157 minz = viewaux[i].fv[2]; in R_AliasCheckBBox() 186 frac = (ALIAS_Z_CLIP_PLANE - pa0->fv[2]) / in R_AliasCheckBBox() 187 (pa1->fv[2] - pa0->fv[2]); in R_AliasCheckBBox() 188 viewaux[numv].fv[0] = pa0->fv[0] + in R_AliasCheckBBox() [all …]
|
D | d_polyse.cpp | 150 void D_PolysetDrawFinalVerts (finalvert_t *fv, int numverts) in D_PolysetDrawFinalVerts() argument 155 for (i=0 ; i<numverts ; i++, fv++) in D_PolysetDrawFinalVerts() 159 if ((fv->v[0] < r_refdef.vrectright) && in D_PolysetDrawFinalVerts() 160 (fv->v[1] < r_refdef.vrectbottom)) in D_PolysetDrawFinalVerts() 162 z = fv->v[5]>>16; in D_PolysetDrawFinalVerts() 163 zbuf = zspantable[fv->v[1]] + fv->v[0]; in D_PolysetDrawFinalVerts() 169 pix = skintable[fv->v[3]>>16][fv->v[2]>>16]; in D_PolysetDrawFinalVerts() 170 pix = ((byte *)acolormap)[pix + (fv->v[4] & 0xFF00) ]; in D_PolysetDrawFinalVerts() 171 d_viewbuffer[d_scantable[fv->v[1]] + fv->v[0]] = pix; in D_PolysetDrawFinalVerts()
|
D | r_edge.cpp | 66 float fv; variable 491 newzi = surf->d_ziorigin + fv*surf->d_zistepv + in R_LeadingEdge() 495 testzi = surf2->d_ziorigin + fv*surf2->d_zistepv + in R_LeadingEdge() 529 newzi = surf->d_ziorigin + fv*surf->d_zistepv + in R_LeadingEdge() 533 testzi = surf2->d_ziorigin + fv*surf2->d_zistepv + in R_LeadingEdge() 711 fv = (float)iv; in R_ScanEdges() 757 fv = (float)iv; in R_ScanEdges()
|
D | r_aliasa.s | 40 #define fv 12+4 macro 59 movl fv(%esp),%edi
|
D | r_edgea.s | 467 flds C(fv) // fv | fu*surf->d_zistepu | fu 484 flds C(fv) // fv | fu*surf2->d_zistepu | newzi | fu 656 flds C(fv) // fv | fu*surf->d_zistepu | fu 673 flds C(fv) // fv | fu*surf2->d_zistepu | newzi | fu
|
/external/quake/quake/src/QW/client/ |
D | r_aclip.c | 26 static finalvert_t fv[2][8]; variable 29 void R_AliasProjectFinalVert (finalvert_t *fv, auxvert_t *av); 52 pav0 = &av[pfv0 - &fv[0][0]]; in R_Alias_clip_z() 53 pav1 = &av[pfv1 - &fv[0][0]]; in R_Alias_clip_z() 57 scale = (ALIAS_Z_CLIP_PLANE - pav0->fv[2]) / in R_Alias_clip_z() 58 (pav1->fv[2] - pav0->fv[2]); in R_Alias_clip_z() 60 avout.fv[0] = pav0->fv[0] + (pav1->fv[0] - pav0->fv[0]) * scale; in R_Alias_clip_z() 61 avout.fv[1] = pav0->fv[1] + (pav1->fv[1] - pav0->fv[1]) * scale; in R_Alias_clip_z() 62 avout.fv[2] = ALIAS_Z_CLIP_PLANE; in R_Alias_clip_z() 70 scale = (ALIAS_Z_CLIP_PLANE - pav1->fv[2]) / in R_Alias_clip_z() [all …]
|
D | r_alias.c | 75 void R_AliasTransformAndProjectFinalVerts (finalvert_t *fv, 79 void R_AliasTransformFinalVert (finalvert_t *fv, auxvert_t *av, 81 void R_AliasProjectFinalVert (finalvert_t *fv, auxvert_t *av); 146 R_AliasTransformVector (&basepts[i][0], &viewaux[i].fv[0]); in R_AliasCheckBBox() 148 if (viewaux[i].fv[2] < ALIAS_Z_CLIP_PLANE) in R_AliasCheckBBox() 156 if (viewaux[i].fv[2] < minz) in R_AliasCheckBBox() 157 minz = viewaux[i].fv[2]; in R_AliasCheckBBox() 186 frac = (ALIAS_Z_CLIP_PLANE - pa0->fv[2]) / in R_AliasCheckBBox() 187 (pa1->fv[2] - pa0->fv[2]); in R_AliasCheckBBox() 188 viewaux[numv].fv[0] = pa0->fv[0] + in R_AliasCheckBBox() [all …]
|
D | d_polyse.c | 150 void D_PolysetDrawFinalVerts (finalvert_t *fv, int numverts) in D_PolysetDrawFinalVerts() argument 155 for (i=0 ; i<numverts ; i++, fv++) in D_PolysetDrawFinalVerts() 159 if ((fv->v[0] < r_refdef.vrectright) && in D_PolysetDrawFinalVerts() 160 (fv->v[1] < r_refdef.vrectbottom)) in D_PolysetDrawFinalVerts() 162 z = fv->v[5]>>16; in D_PolysetDrawFinalVerts() 163 zbuf = zspantable[fv->v[1]] + fv->v[0]; in D_PolysetDrawFinalVerts() 169 pix = skintable[fv->v[3]>>16][fv->v[2]>>16]; in D_PolysetDrawFinalVerts() 170 pix = ((byte *)acolormap)[pix + (fv->v[4] & 0xFF00) ]; in D_PolysetDrawFinalVerts() 171 d_viewbuffer[d_scantable[fv->v[1]] + fv->v[0]] = pix; in D_PolysetDrawFinalVerts()
|
D | r_edge.c | 66 float fv; variable 491 newzi = surf->d_ziorigin + fv*surf->d_zistepv + in R_LeadingEdge() 495 testzi = surf2->d_ziorigin + fv*surf2->d_zistepv + in R_LeadingEdge() 529 newzi = surf->d_ziorigin + fv*surf->d_zistepv + in R_LeadingEdge() 533 testzi = surf2->d_ziorigin + fv*surf2->d_zistepv + in R_LeadingEdge() 711 fv = (float)iv; in R_ScanEdges() 753 fv = (float)iv; in R_ScanEdges()
|
D | r_aliasa.s | 40 #define fv 12+4 macro 59 movl fv(%esp),%edi
|
D | r_edgea.s | 467 flds C(fv) // fv | fu*surf->d_zistepu | fu 484 flds C(fv) // fv | fu*surf2->d_zistepu | newzi | fu 656 flds C(fv) // fv | fu*surf->d_zistepu | fu 673 flds C(fv) // fv | fu*surf2->d_zistepu | newzi | fu
|
/external/clang/test/SemaCXX/ |
D | complex-overload.cpp | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument 5 char *cp1 = foo(fv); in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument 15 char *cp1 = foo(fv); in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument 24 char *cp1 = foo(fv); in test_foo_3()
|
D | overload-call.cpp | 6 void test_f(int iv, float fv) { in test_f() argument 7 float* fp = f(fv); in test_f() 17 void test_g(int iv, float fv) { in test_g() argument 18 int* ip1 = g(iv, fv, 0); in test_g() 20 double* dp1 = g(iv, fv, fv); in test_g() 22 char* cp2 = g(0, 0, 0, iv, fv); in test_g() 24 double* dp2 = g(0, fv, 1.5); // expected-error {{call to 'g' is ambiguous}} in test_g() 30 void test_h(float fv, unsigned char cv) { in test_h() argument 31 double* dp = h(fv); in test_h()
|
/external/clang/test/Sema/ |
D | overloadable-complex.c | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument 5 char *cp1 = foo(fv); in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument 15 char *cp1 = foo(fv); in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument 24 char *cp1 = foo(fv); in test_foo_3()
|
D | overloadable.c | 11 void test_f(int iv, float fv, double dv) { in test_f() argument 13 float *fp = f(fv); in test_f()
|
/external/clang/test/CodeGen/ |
D | overloadable.c | 16 float fv = 3.0f; in main() local 22 fv = f(fv); in main()
|
/external/mksh/src/ |
D | Build.sh | 104 eval HAVE_$fu=$fv 106 test 0 = $fv || fr=yes 115 eval fv=\$HAVE_$fu 116 case $fv in 122 fv=0 149 fv=$2 173 test 1 = $fr || fv=1 175 test 0 = $fr || fv=1 184 test -n "$vscan" && grep $vscan vv.out >/dev/null 2>&1 && fv=$fr 205 eval fv=\$HAVE_$fu [all …]
|
D | dot.mkshrc | 78 local -i isnoglob=0 fl=0 fv=0 fn=0 cpos=0 85 (v) fv=1 ;; 96 if (( fv )); then 97 fv=0 98 while (( fv < ${#DIRSTACK[*]} )); do 99 d=${DIRSTACK[fv]} 101 print -r -- "$fv $d" 102 let fv++ 105 fv=0 106 while (( fv < ${#DIRSTACK[*]} )); do [all …]
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | basic.cpp | 14 void test_f1(int *ip, float fv) { in test_f1() argument 15 f1(ip, fv); in test_f1()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
D | ClassLoaderLocalMap.java | 156 FieldVisitor fv; in buildHolderByteCode() local 160 fv = in buildHolderByteCode() 167 fv.visitEnd(); in buildHolderByteCode()
|
/external/webkit/Source/WebCore/dom/ |
D | ScriptedAnimationController.cpp | 54 if (FrameView* fv = m_document->view()) in resume() local 55 fv->scheduleAnimation(); in resume()
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
D | AccessibilityWebPageObject.mm | 179 WebCore::FrameView* fv = m_page->mainFrame()->coreFrame()->view(); 180 if (fv) { 181 point.y += fv->scrollPosition().y(); 182 point.x += fv->scrollPosition().x();
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
D | p21.cpp | 31 int fv = f(g); // okay variable
|
/external/icu4c/data/translit/ |
D | sk_sk_FONIPA.txt | 44 m } [fv] → ɱ ;
|