HomeSort by relevance Sort by last modified time
    Searched refs:ucp (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_clip.c 50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
59 memcpy(clip.ucp,
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
  /external/mesa3d/src/mesa/state_tracker/
st_atom_clip.c 50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
59 memcpy(clip.ucp,
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
  /external/compiler-rt/android/include/
ucontext.h 26 int breakpad_getcontext(ucontext_t* ucp);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace.cc 83 int skip_count, const void *ucp)
93 int skip_count, const void *ucp)
stacktrace_x86-inl.h 291 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only)
349 const void *const ucp = NULL; variable
351 void **next_sp = NextStackFrame<!IS_STACK_FRAMES, IS_WITH_CONTEXT>(sp, ucp);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace.cc 83 int skip_count, const void *ucp)
93 int skip_count, const void *ucp)
stacktrace_x86-inl.h 288 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only)
331 const void *const ucp = NULL; variable
333 void **next_sp = NextStackFrame<!IS_STACK_FRAMES, IS_WITH_CONTEXT>(sp, ucp);
  /external/libunwind/src/hppa/
unwind_i.h 45 extern int setcontext (const ucontext_t *ucp);
  /external/libunwind/src/ia64/
Ginit.c 416 ucontext_t *ucp; local
423 ucp = (ucontext_t *) uc_addr;
429 ucp = alloca (sizeof (ucontext_t));
430 if (!ucp)
441 dst = (unw_word_t *) ucp;
450 ucp);
457 ret = __uc_set_rsebs (ucp, (uint64_t *) addr, 1, valp);
459 ret = __uc_get_rsebs (ucp, (uint64_t *) addr, 1, valp);
469 unw_word_t dst, *src = (unw_word_t *) ucp;
487 ucontext_t *ucp; local
    [all...]
  /external/libunwind/src/x86_64/
unwind_i.h 82 extern int setcontext (const ucontext_t *ucp);
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 123 const unsigned char *ucp = (const unsigned char *) name; local
129 c = (int) *ucp++;
146 const unsigned char *ucp = (const unsigned char *) msg; local
159 c = (int) ucp[i];
  /external/libunwind/doc/
unw_getcontext.tex 15 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*}\Var{ucp});\\
20 pointed to by \Var{ucp} with the machine-state of the call-site. The
  /external/compiler-rt/lib/asan/
asan_linux.cc 233 ucontext_t *ucp = (ucontext_t*)context; local
234 *stack = (uptr)ucp->uc_stack.ss_sp;
235 *ssize = ucp->uc_stack.ss_size;
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_eval.c 140 GLfloat *ucp = &cn[j * dim]; local
148 cp[j * dim + k] = s * ucp[k] + bincoeff * u * ucp[uinc + k];
150 for (i = 2, ucp += 2 * uinc, poweru = u * u; i < uorder;
151 i++, poweru *= u, ucp += uinc) {
157 s * cp[j * dim + k] + bincoeff * poweru * ucp[k];
  /external/mesa3d/src/mesa/math/
m_eval.c 131 GLfloat *ucp = &cn[j * dim]; local
139 cp[j * dim + k] = s * ucp[k] + bincoeff * u * ucp[uinc + k];
141 for (i = 2, ucp += 2 * uinc, poweru = u * u; i < uorder;
142 i++, poweru *= u, ucp += uinc) {
148 s * cp[j * dim + k] + bincoeff * poweru * ucp[k];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_framebuffer.c 506 float a = svga->curr.clip.ucp[i][0];
507 float b = svga->curr.clip.ucp[i][1];
508 float c = svga->curr.clip.ucp[i][2];
509 float d = svga->curr.clip.ucp[i][3];
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 506 float a = svga->curr.clip.ucp[i][0];
507 float b = svga->curr.clip.ucp[i][1];
508 float c = svga->curr.clip.ucp[i][2];
509 float d = svga->curr.clip.ucp[i][3];
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_state.h 182 float ucp[PIPE_MAX_CLIP_PLANES][4]; member in struct:pipe_clip_state
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 182 float ucp[PIPE_MAX_CLIP_PLANES][4]; member in struct:pipe_clip_state
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_state_init.c 564 ALLOC_STATE( ucp[0], tcl_ucp0_add4, UCP_STATE_SIZE, "UCP/userclip-0", 1 );
565 ALLOC_STATE( ucp[1], tcl_ucp1_add4, UCP_STATE_SIZE, "UCP/userclip-1", 1 );
566 ALLOC_STATE( ucp[2], tcl_ucp2_add4, UCP_STATE_SIZE, "UCP/userclip-2", 1 );
567 ALLOC_STATE( ucp[3], tcl_ucp3_add4, UCP_STATE_SIZE, "UCP/userclip-3", 1 );
568 ALLOC_STATE( ucp[4], tcl_ucp4_add4, UCP_STATE_SIZE, "UCP/userclip-4", 1 )
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state_init.c 564 ALLOC_STATE( ucp[0], tcl_ucp0_add4, UCP_STATE_SIZE, "UCP/userclip-0", 1 );
565 ALLOC_STATE( ucp[1], tcl_ucp1_add4, UCP_STATE_SIZE, "UCP/userclip-1", 1 );
566 ALLOC_STATE( ucp[2], tcl_ucp2_add4, UCP_STATE_SIZE, "UCP/userclip-2", 1 );
567 ALLOC_STATE( ucp[3], tcl_ucp3_add4, UCP_STATE_SIZE, "UCP/userclip-3", 1 );
568 ALLOC_STATE( ucp[4], tcl_ucp4_add4, UCP_STATE_SIZE, "UCP/userclip-4", 1 )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_state.c 304 memcpy(nv30->clip.ucp, clip->ucp, sizeof(clip->ucp));
  /external/dnsmasq/src/
rfc2131.c 655 unsigned char *ucp = option_ptr(opt, 0); local
657 for (j = 0; j < option_len(opt); j += ucp[j] + 1);
661 tmp = j + ucp[j] + 1;
662 ucp[j] = 0;
1148 unsigned char *ucp = option_ptr(opt, 0); local
1163 unsigned char *ucp = option_ptr(opt, 0); local
1175 unsigned char *ucp = option_ptr(opt, 0); local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_state.c 304 memcpy(nv30->clip.ucp, clip->ucp, sizeof(clip->ucp));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_context.c 780 memcpy(dst->ucp, src->ucp, sizeof(dst->ucp));
787 return memcmp(a->ucp, b->ucp, sizeof(a->ucp));
    [all...]

Completed in 519 milliseconds

1 2 3