Searched defs:vpc (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/test/std/depr/depr.c.headers/
H A Dstring_h.pass.cpp23 const void* vpc = 0; local
26 static_assert((std::is_same<decltype(memcpy(vp, vpc, s)), void*>::value), "");
27 static_assert((std::is_same<decltype(memmove(vp, vpc, s)), void*>::value), "");
32 static_assert((std::is_same<decltype(memcmp(vpc, vpc, s)), int>::value), "");
59 static_assert((std::is_same<decltype(memchr(vpc, 0, s)), const void*>::value), "");
/external/libcxx/test/std/strings/c.strings/
H A Dcstring.pass.cpp23 const void* vpc = 0; local
26 static_assert((std::is_same<decltype(std::memcpy(vp, vpc, s)), void*>::value), "");
27 static_assert((std::is_same<decltype(std::memmove(vp, vpc, s)), void*>::value), "");
32 static_assert((std::is_same<decltype(std::memcmp(vpc, vpc, s)), int>::value), "");
55 static_assert((std::is_same<decltype(std::memchr(vpc, 0, s)), const void*>::value), "");
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnvfx_vertprog.c68 temp(struct nvfx_vpc *vpc) argument
70 int idx = ffs(~vpc->r_temps) - 1;
72 if (idx < 0 || (!vpc->is_nv4x && idx >= 16)) {
77 vpc->r_temps |= (1 << idx);
78 vpc->r_temps_discard |= (1 << idx);
83 release_temps(struct nvfx_vpc *vpc) argument
85 vpc->r_temps &= ~vpc->r_temps_discard;
86 vpc->r_temps_discard = 0;
90 constant(struct nvfx_vpc *vpc, in argument
119 emit_src(struct nvfx_vpc *vpc, uint32_t *hw, int pos, struct nvfx_src src) argument
203 emit_dst(struct nvfx_vpc *vpc, uint32_t *hw, int slot, struct nvfx_reg dst) argument
293 nvfx_vp_emit(struct nvfx_vpc *vpc, struct nvfx_insn insn) argument
365 tgsi_src(struct nvfx_vpc *vpc, const struct tgsi_full_src_register *fsrc) argument
420 tgsi_dst(struct nvfx_vpc *vpc, const struct tgsi_full_dst_register *fdst) argument
459 nvfx_vertprog_parse_instruction(struct nvfx_vpc *vpc, unsigned idx, const struct tgsi_full_instruction *finst) argument
805 nvfx_vertprog_parse_decl_output(struct nvfx_vpc *vpc, const struct tgsi_full_declaration *fdec) argument
881 nvfx_vertprog_prepare(struct nvfx_vpc *vpc) argument
967 struct nvfx_vpc *vpc = NULL; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle.cpp638 typedef void * const vpc; typedef in namespace:test23
641 void f(vpc (&)[10]) {}
643 typedef vpc vpca5[5];

Completed in 228 milliseconds