HomeSort by relevance Sort by last modified time
    Searched refs:VP (Results 1 - 16 of 16) sorted by null

  /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/clang/test/Sema/
unused-expr.c 7 void bar(volatile int *VP, int *P, int A,
10 VP < P; // expected-warning {{expression result unused}}
20 *VP; // no warning.
22 VP[4]; // no warning.
  /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/lib/IR/
Value.cpp 486 /// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
497 assert(VP.getPointer() == Next->VP.getPointer() && "Added to wrong list?");
511 /// AddToUseList - Add this ValueHandle to the use list for VP.
513 assert(VP.getPointer() && "Null pointer doesn't have a use list!");
515 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
517 if (VP.getPointer()->HasValueHandle) {
520 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()];
534 ValueHandleBase *&Entry = Handles[VP.getPointer()];
537 VP.getPointer()->HasValueHandle = true
    [all...]
  /external/llvm/include/llvm/ADT/
PointerUnion.h 172 static inline PointerUnion getFromOpaqueValue(void *VP) {
174 V.Val = ValTy::getFromOpaqueValue(VP);
310 static inline PointerUnion3 getFromOpaqueValue(void *VP) {
312 V.Val = ValTy::getFromOpaqueValue(VP);
423 static inline PointerUnion4 getFromOpaqueValue(void *VP) {
425 V.Val = ValTy::getFromOpaqueValue(VP);
  /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/Transforms/Utils/
BreakCriticalEdges.cpp 108 if (const PHINode *VP = dyn_cast<PHINode>(V))
109 if (VP->getParent() == SplitBB)
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 615 if (const PHINode *VP = dyn_cast<PHINode>(I))
616 if (VP->getParent() == CondPHI->getParent())
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/testdata/
h264-svc-99-640x360.rtpdump 493 ?W?W?,?????S?jqV?z????;?{??.56?????S?g?????????9?O??v 9???q$?7??dO??p?-??(?X??????.?t?O?-O?{b?????????r?G???u?T??p?i????9???K??<?h???y?=>?6d 9?5?O??????Gh??4m??W?}h??k???G??ew2'?M;m???Xi?vP?A????8?x?c?????hd?t?? ??I?w??5?q??? ??*?>?mF??.??k???m?}??J??3.7???O? Yx?fh???D??u#?x?z???v?xRÄBW~t0??`?]?y??yb0????lk????v`oc?c??!?y?7:???8?[??6 ?<T?-?? ,yk??] ?????????????[??]?e????4X?Lj?Q(???P??p?-??UC8h???dW??,?;cGJ???????q?A????
    [all...]

Completed in 939 milliseconds