Searched defs:VP (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/Sema/
H A Dunused-expr.c7 void bar(volatile int *VP, int *P, int A, argument
10 VP < P; // expected-warning {{relational comparison result unused}}
20 *VP; // no warning.
22 VP[4]; // no warning.
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_lighttmp.h116 GLfloat VP[3]; /* unit vector from vertex to light */ local
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
293 GLfloat VP[3]; /* unit vector from vertex to light */ local
[all...]
H A Dt_rasterpos.c133 GLfloat VP[3]; /* vector from vertex to light pos */ local
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/
H A Dt_vb_lighttmp.h116 GLfloat VP[3]; /* unit vector from vertex to light */ local
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
293 GLfloat VP[3]; /* unit vector from vertex to light */ local
[all...]
H A Dt_rasterpos.c133 GLfloat VP[3]; /* vector from vertex to light pos */ local
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/llvm/include/llvm/ADT/
H A DPointerUnion.h179 static inline PointerUnion getFromOpaqueValue(void *VP) { argument
181 V.Val = ValTy::getFromOpaqueValue(VP);
330 static inline PointerUnion3 getFromOpaqueValue(void *VP) { argument
332 V.Val = ValTy::getFromOpaqueValue(VP);
449 static inline PointerUnion4 getFromOpaqueValue(void *VP) { argument
451 V.Val = ValTy::getFromOpaqueValue(VP);
/external/llvm/include/llvm/IR/
H A DValueHandle.h62 PointerIntPair<Value*, 2> VP; member in class:llvm::ValueHandleBase
67 : PrevPair(nullptr, Kind), Next(nullptr), VP(nullptr, 0) {}
69 : PrevPair(nullptr, Kind), Next(nullptr), VP(V, 0) {
70 if (isValid(VP.getPointer()))
74 : PrevPair(nullptr, Kind), Next(nullptr), VP(RHS.VP) {
75 if (isValid(VP.getPointer()))
79 if (isValid(VP.getPointer()))
84 if (VP.getPointer() == RHS) return RHS;
85 if (isValid(VP
281 Value *VP = ValueHandleBase::getValPtr(); local
[all...]
/external/clang/include/clang/Sema/
H A DOwnership.h188 void *VP = PtrTraits::getAsVoidPointer(V); local
189 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
203 void *VP = reinterpret_cast<void *>(PtrWithInvalid & ~0x01); local
204 return PtrTraits::getFromVoidPointer(VP);
209 void *VP = PtrTraits::getAsVoidPointer(V); local
210 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
215 void *VP = PtrTraits::getAsVoidPointer(RHS); local
216 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
/external/llvm/lib/Linker/
H A DLinkModules.cpp1350 Value **VP, **Values = VP = new Value*[NumOps]; local
1351 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1352 *VP = DstValue->getOperand(i);
1353 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1354 *VP = SrcValue->getOperand(i);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1365 VPPair VP(P, ValuePair(UI, UJ));
1366 ConnectedPairs[VP.first].push_back(VP.second);
1367 PairConnectionTypes.insert(VPPairWithType(VP, PairConnectionDirect));
1372 VPPair VP(P, ValuePair(UJ, UI));
1373 ConnectedPairs[VP.first].push_back(VP.second);
1374 PairConnectionTypes.insert(VPPairWithType(VP, PairConnectionSwap));
1388 VPPair VP(P, ValuePair(UI, UJ));
1389 ConnectedPairs[VP
2056 ValuePair VP = ValuePair(O1, O2); local
[all...]

Completed in 157 milliseconds