HomeSort by relevance Sort by last modified time
    Searched refs:normal (Results 26 - 50 of 189) sorted by null

12 3 4 5 6 7 8

  /dalvik/
Android.mk 39 # DONT_INSTALL_DEX_FILES is already false, so a normal make takes care of it.
55 # we won't touch it (-c) and the normal build will create
63 # so a normal make takes care of it.
  /external/webkit/WebCore/bridge/qt/
qt_class.cpp 81 QByteArray normal = QMetaObject::normalizedSignature(name.constData());
85 if (normal.contains('(') && (index = m_metaObject->indexOfMethod(normal)) != -1) {
88 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false);
104 if (normal == signature) {
105 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false);
  /external/quake/quake/src/QW/client/
r_misc.c 356 v[0] = screenedge[i].normal[2];
357 v[1] = -screenedge[i].normal[0];
358 v[2] = screenedge[i].normal[1];
364 VectorCopy (v2, view_clipplanes[i].normal);
393 void R_TransformPlane (mplane_t *p, float *normal, float *dist)
397 d = DotProduct (r_origin, p->normal);
400 TransformVector (p->normal, normal);
419 if (view_clipplanes[i].normal[j] < 0)
gl_rmain.c 218 { // normal sprite
827 if (out->normal[j] < 0)
842 VectorAdd (vpn, vright, frustum[0].normal);
843 VectorSubtract (vpn, vright, frustum[1].normal);
845 VectorAdd (vpn, vup, frustum[2].normal);
846 VectorSubtract (vpn, vup, frustum[3].normal);
852 RotatePointAroundVector( frustum[0].normal, vup, vpn, -(90-r_refdef.fov_x / 2 ) );
854 RotatePointAroundVector( frustum[1].normal, vup, vpn, 90-r_refdef.fov_x / 2 );
856 RotatePointAroundVector( frustum[2].normal, vright, vpn, 90-r_refdef.fov_y / 2 );
858 RotatePointAroundVector( frustum[3].normal, vright, vpn, -( 90 - r_refdef.fov_y / 2 ) )
    [all...]
pmove.h 23 vec3_t normal; member in struct:__anon6769
34 pmplane_t plane; // surface normal at impact
r_main.c 446 screenedge[0].normal[0] = -1.0 / (xOrigin*r_refdef.horizontalFieldOfView);
447 screenedge[0].normal[1] = 0;
448 screenedge[0].normal[2] = 1;
452 screenedge[1].normal[0] =
454 screenedge[1].normal[1] = 0;
455 screenedge[1].normal[2] = 1;
459 screenedge[2].normal[0] = 0;
460 screenedge[2].normal[1] = -1.0 / (yOrigin*verticalFieldOfView);
461 screenedge[2].normal[2] = 1;
465 screenedge[3].normal[0] = 0
    [all...]
pmove.c 72 int PM_ClipVelocity (vec3_t in, vec3_t normal, vec3_t out, float overbounce)
79 if (normal[2] > 0)
81 if (!normal[2])
84 backoff = DotProduct (in, normal) * overbounce;
88 change = normal[i]*backoff;
156 if (trace.plane.normal[2] > 0.7)
160 if (!trace.plane.normal[2])
174 VectorCopy (trace.plane.normal, planes[numplanes]);
289 if ( trace.plane.normal[2] < 0.7)
594 if ( tr.plane.normal[2] < 0.7
    [all...]
r_draw.c 268 d0 = DotProduct (pv0->position, clip->normal) - clip->dist;
269 d1 = DotProduct (pv1->position, clip->normal) - clip->dist;
564 TransformVector (pplane->normal, p_normal);
566 distinv = 1.0 / (pplane->dist - DotProduct (modelorg, pplane->normal));
679 TransformVector (pplane->normal, p_normal);
681 distinv = 1.0 / (pplane->dist - DotProduct (modelorg, pplane->normal));
757 pclip->normal) - pclip->dist;
765 dist = DotProduct (verts[vertpage][i].position, pclip->normal) -
897 dot = DotProduct (modelorg, pplane->normal) - pplane->dist;
r_light.c 39 // 'm' is normal light, 'a' is no light, 'z' is double bright
80 dist = DotProduct (light->origin, splitplane->normal) - splitplane->dist;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 59 assertEquals(100, o.x, "normal load");
64 assertEquals(200, o.y_mirror, "normal store");
69 assertEquals(300, o.f(), "normal call");
  /bionic/libc/unistd/
fnmatch.c 123 /* not a good range, treat as normal text */
124 goto normal;
142 normal:
  /external/libvpx/examples/includes/geshi/contrib/
aliased.php 49 $geshi->set_line_style('font: normal normal 95% \'Courier New\', Courier, monospace; color: #003030;', 'font-weight: bold; color: #006060;', true);
84 font-weight: normal;
90 font-weight: normal;
example.php 66 $geshi->set_overall_style('font: normal normal 90% monospace; color: #000066; border: 1px solid #d0d0d0; background-color: #f0f0f0;', false);
126 font-weight: normal;
132 font-weight: normal;
  /external/webkit/WebCore/css/
wml.css 119 letter-spacing: normal;
120 word-spacing: normal;
121 line-height: normal;
201 font-weight: normal;
  /dalvik/vm/mterp/x86/
entry.S 55 /* Normal start? */
59 /* Normal case: start executing the instruction at rPC */
64 /* Reset to normal case */
97 movl offGlue_bailPtr(%ecx),%esp # Stack back to normal
  /external/quake/quake/src/WinQuake/
r_main.cpp 426 screenedge[0].normal[0] = -1.0 / (xOrigin*r_refdef.horizontalFieldOfView);
427 screenedge[0].normal[1] = 0;
428 screenedge[0].normal[2] = 1;
432 screenedge[1].normal[0] =
434 screenedge[1].normal[1] = 0;
435 screenedge[1].normal[2] = 1;
439 screenedge[2].normal[0] = 0;
440 screenedge[2].normal[1] = -1.0 / (yOrigin*verticalFieldOfView);
441 screenedge[2].normal[2] = 1;
445 screenedge[3].normal[0] = 0;
    [all...]
r_draw.cpp 268 d0 = DotProduct (pv0->position, clip->normal) - clip->dist;
269 d1 = DotProduct (pv1->position, clip->normal) - clip->dist;
564 TransformVector (pplane->normal, p_normal);
566 distinv = 1.0 / (pplane->dist - DotProduct (modelorg, pplane->normal));
679 TransformVector (pplane->normal, p_normal);
681 distinv = 1.0 / (pplane->dist - DotProduct (modelorg, pplane->normal));
757 pclip->normal) - pclip->dist;
765 dist = DotProduct (verts[vertpage][i].position, pclip->normal) -
897 dot = DotProduct (modelorg, pplane->normal) - pplane->dist;
gl_rmain.cpp 217 { // normal sprite
333 float *normal; local
449 float *normal; local
925 if (out->normal[j] < 0)
940 VectorAdd (vpn, vright, frustum[0].normal);
941 VectorSubtract (vpn, vright, frustum[1].normal);
943 VectorAdd (vpn, vup, frustum[2].normal);
944 VectorSubtract (vpn, vup, frustum[3].normal);
949 RotatePointAroundVector( frustum[0].normal, vup, vpn, -(90-r_refdef.fov_x / 2 ) );
951 RotatePointAroundVector( frustum[1].normal, vup, vpn, 90-r_refdef.fov_x / 2 )
    [all...]
r_light.cpp 39 // 'm' is normal light, 'a' is no light, 'z' is double bright
80 dist = DotProduct (light->origin, splitplane->normal) - splitplane->dist;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
world.cpp 91 box_planes[i].normal[i>>1] = 1;
508 d = DotProduct (plane->normal, p) - plane->dist;
624 t1 = DotProduct (plane->normal, p1) - plane->dist;
625 t2 = DotProduct (plane->normal, p2) - plane->dist;
682 VectorCopy (plane->normal, trace->plane.normal);
687 VectorSubtract (vec3_origin, plane->normal, trace->plane.normal);
786 VectorCopy (trace.plane.normal, temp);
787 trace.plane.normal[0] = DotProduct (temp, forward)
    [all...]
  /external/expat/lib/
xmltok.c 1248 struct normal_encoding normal; member in struct:unknown_encoding
    [all...]
  /external/openssl/crypto/md5/asm/
md5-586.pl 3 # Normal is the
5 # version, non-normal is the
8 $normal=0;
159 &add($K,64) if $pos >=1 && !$normal;
197 &set_label("start") unless $normal;
291 &mov($tmp1,&swtmp(0)) unless $normal;
296 &cmp($tmp1,$X) unless $normal; # check count
297 &jae(&label("start")) unless $normal;
  /external/webkit/WebCore/platform/graphics/filters/
FEBlend.cpp 76 static unsigned char normal(unsigned char colorA, unsigned char colorB, unsigned char alphaA, unsigned char) function in namespace:WebCore
124 static const BlendType callEffect[] = {unknown, normal, multiply, screen, darken, lighten};
  /external/chromium/third_party/icu/source/test/perf/perldriver/
Output.pm 227 A:link { color: black; font-weight: normal; text-decoration: none} /* unvisited links */
228 A:visited { color: blue; font-weight: normal; text-decoration: none } /* visited links */
229 A:hover { color: red; font-weight: normal; text-decoration: none } /* user hovers */
230 A:active { color: lime; font-weight: normal; text-decoration: none } /* active links */
  /external/icu4c/test/perf/perldriver/
Output.pm 227 A:link { color: black; font-weight: normal; text-decoration: none} /* unvisited links */
228 A:visited { color: blue; font-weight: normal; text-decoration: none } /* visited links */
229 A:hover { color: red; font-weight: normal; text-decoration: none } /* user hovers */
230 A:active { color: lime; font-weight: normal; text-decoration: none } /* active links */

Completed in 1295 milliseconds

12 3 4 5 6 7 8