/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_lighttmp.h | 116 GLfloat VP[3]; /* unit vector from vertex to light */ 117 GLfloat n_dot_VP; /* n dot VP */ 120 /* compute VP and attenuation */ 123 COPY_3V(VP, light->_VP_inf_norm); 129 SUB_3V(VP, light->_Position, vertex); 131 d = (GLfloat) LEN_3FV( VP ); 135 SELF_SCALE_SCALAR_3V(VP, invd); 144 GLfloat PV_dot_dir = - DOT3(VP, light->_NormSpotDirection); 160 n_dot_VP = DOT3( normal, VP ); 186 /* specular term - cannibalize VP... * [all...] |
t_rasterpos.c | 133 GLfloat VP[3]; /* vector from vertex to light pos */ 139 COPY_3V(VP, light->_VP_inf_norm); 146 /* VP = vector from vertex pos to light[i].pos */ 147 SUB_3V(VP, light->_Position, vertex); 148 /* d = length(VP) */ 149 d = (GLfloat) LEN_3FV( VP ); 151 /* normalize VP */ 153 SELF_SCALE_SCALAR_3V(VP, invd); 162 GLfloat PV_dot_dir = - DOT3(VP, light->_NormSpotDirection); 177 n_dot_VP = DOT3( normal, VP ); [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_lighttmp.h | 116 GLfloat VP[3]; /* unit vector from vertex to light */ 117 GLfloat n_dot_VP; /* n dot VP */ 120 /* compute VP and attenuation */ 123 COPY_3V(VP, light->_VP_inf_norm); 129 SUB_3V(VP, light->_Position, vertex); 131 d = (GLfloat) LEN_3FV( VP ); 135 SELF_SCALE_SCALAR_3V(VP, invd); 144 GLfloat PV_dot_dir = - DOT3(VP, light->_NormSpotDirection); 160 n_dot_VP = DOT3( normal, VP ); 186 /* specular term - cannibalize VP... * [all...] |
t_rasterpos.c | 133 GLfloat VP[3]; /* vector from vertex to light pos */ 139 COPY_3V(VP, light->_VP_inf_norm); 146 /* VP = vector from vertex pos to light[i].pos */ 147 SUB_3V(VP, light->_Position, vertex); 148 /* d = length(VP) */ 149 d = (GLfloat) LEN_3FV( VP ); 151 /* normalize VP */ 153 SELF_SCALE_SCALAR_3V(VP, invd); 162 GLfloat PV_dot_dir = - DOT3(VP, light->_NormSpotDirection); 177 n_dot_VP = DOT3( normal, VP ); [all...] |
/external/clang/include/clang/Sema/ |
Ownership.h | 176 void *VP = PtrTraits::getAsVoidPointer(V); 177 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP); 190 void *VP = reinterpret_cast<void *>(PtrWithInvalid & ~0x01); 191 return PtrTraits::getFromVoidPointer(VP); 199 void *VP = PtrTraits::getAsVoidPointer(V); 200 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP); 205 void *VP = PtrTraits::getAsVoidPointer(RHS); 206 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
|
/external/llvm/include/llvm/Support/ |
ValueHandle.h | 62 PointerIntPair<Value*, 2> VP; 67 : PrevPair(0, Kind), Next(0), VP(0, 0) {} 69 : PrevPair(0, Kind), Next(0), VP(V, 0) { 70 if (isValid(VP.getPointer())) 74 : PrevPair(0, Kind), Next(0), VP(RHS.VP) { 75 if (isValid(VP.getPointer())) 79 if (isValid(VP.getPointer())) 84 if (VP.getPointer() == RHS) return RHS; 85 if (isValid(VP.getPointer())) RemoveFromUseList() [all...] |
/external/llvm/lib/CodeGen/ |
StackColoring.cpp | 490 std::pair<unsigned, DebugLoc> &VP = VI->second; 491 if (SlotRemap.count(VP.first)) { 493 VP.first = SlotRemap[VP.first];
|
/external/llvm/lib/Linker/ |
LinkModules.cpp | [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfDebug.cpp | [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
BBVectorize.cpp | [all...] |