Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 10518) sorted by relevance

12345678910>>...421

/external/bc/tests/bc/
Ddivmod.txt2 v = divmod(0, 1, v[]); v[0]; v
3 v = divmod(0, 321566, v[]); v[0]; v
4 v = divmod(0, 0.3984567238456, v[]); v[0]; v
5 v = divmod(1, 1, v[]); v[0]; v
6 v = divmod(1, 1287469297356, v[]); v[0]; v
7 v = divmod(1, 0.2395672438567234, v[]); v[0]; v
8 v = divmod(1, 237586239856.0293596728392360, v[]); v[0]; v
9 v = divmod(1249687284356, 3027949207835207, v[]); v[0]; v
10 v = divmod(378617298617396719, 35748521, v[]); v[0]; v
11 v = divmod(9348576237845624358, 0.9857829375461, v[]); v[0]; v
[all …]
/external/ethtool/
Dde2104x.c117 u32 tmp, v, *data = (u32 *)regs->data; in de21040_dump_regs() local
125 v = data[0]; in de21040_dump_regs()
132 v, in de21040_dump_regs()
133 csr0_tap[(v >> 17) & 3], in de21040_dump_regs()
134 v & (1 << 16) ? "Diagnostic" : "Standard", in de21040_dump_regs()
135 csr0_cache_al[(v >> 14) & 3]); in de21040_dump_regs()
136 tmp = (v >> 8) & 0x3f; in de21040_dump_regs()
148 v & (1 << 7) ? "Big" : "Little", in de21040_dump_regs()
149 (v >> 2) & 0x1f, in de21040_dump_regs()
150 v & (1 << 1) ? "Round-robin" : "RX-has-priority"); in de21040_dump_regs()
[all …]
/external/llvm/test/MC/AMDGPU/
Dflat.s18 flat_load_dword v1, v[3:4]
23 flat_load_dword v1, v[3:4] glc
28 flat_load_dword v1, v[3:4] glc slc
33 flat_load_dword v1, v[3:4] glc tfe
38 flat_load_dword v1, v[3:4] glc slc tfe
43 flat_load_dword v1, v[3:4] slc
48 flat_load_dword v1, v[3:4] slc tfe
53 flat_load_dword v1, v[3:4] tfe
58 flat_store_dword v[3:4], v1
62 flat_store_dword v[3:4], v1 glc
[all …]
/external/rust/crates/glam/tests/
Dswizzles_f64.rs7 let v = dvec4(1_f64, 2_f64, 3_f64, 4_f64); localVariable
8 assert_eq!(v, v.xyzw());
9 assert_eq!(v.xxxx(), dvec4(1_f64, 1_f64, 1_f64, 1_f64));
10 assert_eq!(v.xxxy(), dvec4(1_f64, 1_f64, 1_f64, 2_f64));
11 assert_eq!(v.xxxz(), dvec4(1_f64, 1_f64, 1_f64, 3_f64));
12 assert_eq!(v.xxxw(), dvec4(1_f64, 1_f64, 1_f64, 4_f64));
13 assert_eq!(v.xxyx(), dvec4(1_f64, 1_f64, 2_f64, 1_f64));
14 assert_eq!(v.xxyy(), dvec4(1_f64, 1_f64, 2_f64, 2_f64));
15 assert_eq!(v.xxyz(), dvec4(1_f64, 1_f64, 2_f64, 3_f64));
16 assert_eq!(v.xxyw(), dvec4(1_f64, 1_f64, 2_f64, 4_f64));
[all …]
Dswizzles_u32.rs7 let v = uvec4(1_u32, 2_u32, 3_u32, 4_u32); localVariable
8 assert_eq!(v, v.xyzw());
9 assert_eq!(v.xxxx(), uvec4(1_u32, 1_u32, 1_u32, 1_u32));
10 assert_eq!(v.xxxy(), uvec4(1_u32, 1_u32, 1_u32, 2_u32));
11 assert_eq!(v.xxxz(), uvec4(1_u32, 1_u32, 1_u32, 3_u32));
12 assert_eq!(v.xxxw(), uvec4(1_u32, 1_u32, 1_u32, 4_u32));
13 assert_eq!(v.xxyx(), uvec4(1_u32, 1_u32, 2_u32, 1_u32));
14 assert_eq!(v.xxyy(), uvec4(1_u32, 1_u32, 2_u32, 2_u32));
15 assert_eq!(v.xxyz(), uvec4(1_u32, 1_u32, 2_u32, 3_u32));
16 assert_eq!(v.xxyw(), uvec4(1_u32, 1_u32, 2_u32, 4_u32));
[all …]
Dswizzles_i32.rs7 let v = ivec4(1_i32, 2_i32, 3_i32, 4_i32); localVariable
8 assert_eq!(v, v.xyzw());
9 assert_eq!(v.xxxx(), ivec4(1_i32, 1_i32, 1_i32, 1_i32));
10 assert_eq!(v.xxxy(), ivec4(1_i32, 1_i32, 1_i32, 2_i32));
11 assert_eq!(v.xxxz(), ivec4(1_i32, 1_i32, 1_i32, 3_i32));
12 assert_eq!(v.xxxw(), ivec4(1_i32, 1_i32, 1_i32, 4_i32));
13 assert_eq!(v.xxyx(), ivec4(1_i32, 1_i32, 2_i32, 1_i32));
14 assert_eq!(v.xxyy(), ivec4(1_i32, 1_i32, 2_i32, 2_i32));
15 assert_eq!(v.xxyz(), ivec4(1_i32, 1_i32, 2_i32, 3_i32));
16 assert_eq!(v.xxyw(), ivec4(1_i32, 1_i32, 2_i32, 4_i32));
[all …]
Dswizzles_f32.rs7 let v = vec4(1_f32, 2_f32, 3_f32, 4_f32); localVariable
8 assert_eq!(v, v.xyzw());
9 assert_eq!(v.xxxx(), vec4(1_f32, 1_f32, 1_f32, 1_f32));
10 assert_eq!(v.xxxy(), vec4(1_f32, 1_f32, 1_f32, 2_f32));
11 assert_eq!(v.xxxz(), vec4(1_f32, 1_f32, 1_f32, 3_f32));
12 assert_eq!(v.xxxw(), vec4(1_f32, 1_f32, 1_f32, 4_f32));
13 assert_eq!(v.xxyx(), vec4(1_f32, 1_f32, 2_f32, 1_f32));
14 assert_eq!(v.xxyy(), vec4(1_f32, 1_f32, 2_f32, 2_f32));
15 assert_eq!(v.xxyz(), vec4(1_f32, 1_f32, 2_f32, 3_f32));
16 assert_eq!(v.xxyw(), vec4(1_f32, 1_f32, 2_f32, 4_f32));
[all …]
/external/deqp-deps/glslang/Test/
DOperations.frag17 vec4 v;
27 v = radians(uv4);
28 v += degrees(v);
29 v += (i = ui*ui, sin(v));
30 v += cos(v);
31 v += tan(v);
32 v += asin(v);
33 v += acos(v);
35 v += atan(v);
36 v += sinh(v);
[all …]
Dspv.Operations.frag16 vec4 v;
24 v = radians(uv4);
25 v += degrees(v);
26 v += (i = ui*ui, sin(v));
27 v += cos(v);
28 v += tan(v);
29 v += asin(v);
30 v += acos(v);
32 v += atan(v);
33 v += sinh(v);
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
DOperations.frag17 vec4 v;
27 v = radians(uv4);
28 v += degrees(v);
29 v += (i = ui*ui, sin(v));
30 v += cos(v);
31 v += tan(v);
32 v += asin(v);
33 v += acos(v);
35 v += atan(v);
36 v += sinh(v);
[all …]
Dspv.Operations.frag16 vec4 v;
24 v = radians(uv4);
25 v += degrees(v);
26 v += (i = ui*ui, sin(v));
27 v += cos(v);
28 v += tan(v);
29 v += asin(v);
30 v += acos(v);
32 v += atan(v);
33 v += sinh(v);
[all …]
/external/clang/test/Sema/
Dcast.c31 void testBool(Bool v) { in testBool() argument
32 (void) (Bool) v; in testBool()
33 (void) (Int) v; in testBool()
34 (void) (Long) v; in testBool()
35 (void) (Float) v; in testBool()
36 (void) (Double) v; in testBool()
37 (void) (CInt) v; in testBool()
38 (void) (CLong) v; in testBool()
39 (void) (CFloat) v; in testBool()
40 (void) (CDouble) v; in testBool()
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dspv.coopmatKHR_constructor.comp.out23 Name 154 "v"
24 Name 158 "v"
25 Name 164 "v"
26 Name 170 "v"
27 Name 176 "v"
28 Name 182 "v"
29 Name 188 "v"
30 Name 194 "v"
31 Name 199 "v"
32 Name 204 "v"
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/language.support/cmp/cmp.alg/
Dweak_order.pass.cpp121 F v[] = { in test_1_3() local
134 static_assert(std::size(v) == 14); in test_1_3()
139 auto naturalOrder = (v[i] <=> v[j]); in test_1_3()
140 if (v[i] == 0 && v[j] == 0) { in test_1_3()
148 assert(std::weak_order(v[0], v[0]) == std::weak_ordering::equivalent); in test_1_3()
149 assert(std::weak_order(v[0], v[1]) == std::weak_ordering::less); in test_1_3()
150 assert(std::weak_order(v[0], v[2]) == std::weak_ordering::less); in test_1_3()
151 assert(std::weak_order(v[0], v[3]) == std::weak_ordering::less); in test_1_3()
152 assert(std::weak_order(v[0], v[4]) == std::weak_ordering::less); in test_1_3()
153 assert(std::weak_order(v[0], v[5]) == std::weak_ordering::less); in test_1_3()
[all …]
Dstrong_order.pass.cpp122 F v[] = { in test_1_3() local
135 static_assert(std::size(v) == 14); in test_1_3()
140 auto naturalOrder = (v[i] <=> v[j]); in test_1_3()
141 if (v[i] == 0 && v[j] == 0) { in test_1_3()
149 assert(std::strong_order(v[0], v[0]) == std::strong_ordering::equal); in test_1_3()
150 assert(std::strong_order(v[0], v[1]) == std::strong_ordering::less); in test_1_3()
151 assert(std::strong_order(v[0], v[2]) == std::strong_ordering::less); in test_1_3()
152 assert(std::strong_order(v[0], v[3]) == std::strong_ordering::less); in test_1_3()
153 assert(std::strong_order(v[0], v[4]) == std::strong_ordering::less); in test_1_3()
154 assert(std::strong_order(v[0], v[5]) == std::strong_ordering::less); in test_1_3()
[all …]
Dcompare_strong_order_fallback.pass.cpp122 F v[] = { in test_1_3() local
135 static_assert(std::size(v) == 14); in test_1_3()
140 auto naturalOrder = (v[i] <=> v[j]); in test_1_3()
141 if (v[i] == 0 && v[j] == 0) { in test_1_3()
149 assert(std::compare_strong_order_fallback(v[0], v[0]) == std::strong_ordering::equal); in test_1_3()
150 assert(std::compare_strong_order_fallback(v[0], v[1]) == std::strong_ordering::less); in test_1_3()
151 assert(std::compare_strong_order_fallback(v[0], v[2]) == std::strong_ordering::less); in test_1_3()
152 assert(std::compare_strong_order_fallback(v[0], v[3]) == std::strong_ordering::less); in test_1_3()
153 assert(std::compare_strong_order_fallback(v[0], v[4]) == std::strong_ordering::less); in test_1_3()
154 assert(std::compare_strong_order_fallback(v[0], v[5]) == std::strong_ordering::less); in test_1_3()
[all …]
Dcompare_weak_order_fallback.pass.cpp121 F v[] = { in test_1_3() local
134 static_assert(std::size(v) == 14); in test_1_3()
139 auto naturalOrder = (v[i] <=> v[j]); in test_1_3()
140 if (v[i] == 0 && v[j] == 0) { in test_1_3()
148 assert(std::compare_weak_order_fallback(v[0], v[0]) == std::weak_ordering::equivalent); in test_1_3()
149 assert(std::compare_weak_order_fallback(v[0], v[1]) == std::weak_ordering::less); in test_1_3()
150 assert(std::compare_weak_order_fallback(v[0], v[2]) == std::weak_ordering::less); in test_1_3()
151 assert(std::compare_weak_order_fallback(v[0], v[3]) == std::weak_ordering::less); in test_1_3()
152 assert(std::compare_weak_order_fallback(v[0], v[4]) == std::weak_ordering::less); in test_1_3()
153 assert(std::compare_weak_order_fallback(v[0], v[5]) == std::weak_ordering::less); in test_1_3()
[all …]
/external/mesa3d/src/mesa/main/
Dapi_arrayelt.c96 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) in VertexAttrib1NbvNV() argument
98 CALL_VertexAttrib1fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]))); in VertexAttrib1NbvNV()
102 VertexAttrib1bvNV(GLuint index, const GLbyte *v) in VertexAttrib1bvNV() argument
104 CALL_VertexAttrib1fNV(get_dispatch(), (index, (GLfloat)v[0])); in VertexAttrib1bvNV()
108 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) in VertexAttrib2NbvNV() argument
110 CALL_VertexAttrib2fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1]))); in VertexAttrib2NbvNV()
114 VertexAttrib2bvNV(GLuint index, const GLbyte *v) in VertexAttrib2bvNV() argument
116 CALL_VertexAttrib2fNV(get_dispatch(), (index, (GLfloat)v[0], (GLfloat)v[1])); in VertexAttrib2bvNV()
120 VertexAttrib3NbvNV(GLuint index, const GLbyte *v) in VertexAttrib3NbvNV() argument
122 CALL_VertexAttrib3fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), in VertexAttrib3NbvNV()
[all …]
/external/rust/crates/rayon/tests/
Dclones.rs108 let v: Vec<_> = (0..1000).collect(); in clone_vec() localVariable
109 check(v.par_iter()); in clone_vec()
110 check(v.par_chunks(42)); in clone_vec()
111 check(v.par_chunks_exact(42)); in clone_vec()
112 check(v.par_rchunks(42)); in clone_vec()
113 check(v.par_rchunks_exact(42)); in clone_vec()
114 check(v.par_windows(42)); in clone_vec()
115 check(v.par_split(|x| x % 3 == 0)); in clone_vec()
116 check(v.into_par_iter()); in clone_vec()
127 let v: Vec<_> = (0..1000).map(Some).collect(); in clone_adaptors() localVariable
[all …]
Ddebug.rs119 let mut v: Vec<_> = (0..10).collect(); in debug_vec() localVariable
120 check(v.par_iter()); in debug_vec()
121 check(v.par_iter_mut()); in debug_vec()
122 check(v.par_chunks(42)); in debug_vec()
123 check(v.par_chunks_exact(42)); in debug_vec()
124 check(v.par_chunks_mut(42)); in debug_vec()
125 check(v.par_chunks_exact_mut(42)); in debug_vec()
126 check(v.par_rchunks(42)); in debug_vec()
127 check(v.par_rchunks_exact(42)); in debug_vec()
128 check(v.par_rchunks_mut(42)); in debug_vec()
[all …]
/external/golang-protobuf/reflect/protoreflect/
Dvalue_union.go88 func ValueOf(v interface{}) Value {
89 switch v := v.(type) {
93 return ValueOfBool(v)
95 return ValueOfInt32(v)
97 return ValueOfInt64(v)
99 return ValueOfUint32(v)
101 return ValueOfUint64(v)
103 return ValueOfFloat32(v)
105 return ValueOfFloat64(v)
107 return ValueOfString(v)
[all …]
/external/bc/src/
Dvector.c46 bc_vec_grow(BcVec* restrict v, size_t n) in bc_vec_grow() argument
53 cap = v->cap; in bc_vec_grow()
54 len = v->len + n; in bc_vec_grow()
69 v->v = bc_vm_realloc(v->v, bc_vm_arraySize(cap, v->size)); in bc_vec_grow()
70 v->cap = cap; in bc_vec_grow()
76 bc_vec_init(BcVec* restrict v, size_t esize, BcDtorType dtor) in bc_vec_init() argument
80 assert(v != NULL && esize); in bc_vec_init()
82 v->v = bc_vm_malloc(bc_vm_arraySize(BC_VEC_START_CAP, esize)); in bc_vec_init()
84 v->size = (BcSize) esize; in bc_vec_init()
85 v->cap = BC_VEC_START_CAP; in bc_vec_init()
[all …]
/external/golang-protobuf/encoding/protowire/
Dwire.go169 v, n := ConsumeVarint(b)
173 num, typ := DecodeTag(v)
185 func AppendVarint(b []byte, v uint64) []byte {
187 case v < 1<<7:
188 b = append(b, byte(v))
189 case v < 1<<14:
191 byte((v>>0)&0x7f|0x80),
192 byte(v>>7))
193 case v < 1<<21:
195 byte((v>>0)&0x7f|0x80),
[all …]
/external/libcxx/test/libcxx/containers/sequences/vector/
Dasan_throw.pass.cpp59 std::vector<X> v; in test_push_back() local
60 v.reserve(2); in test_push_back()
61 v.push_back(X(2)); in test_push_back()
62 assert(v.size() == 1); in test_push_back()
64 v.push_back(X(66)); in test_push_back()
67 assert(v.size() == 1); in test_push_back()
69 assert(v.size() == 1); in test_push_back()
70 assert(is_contiguous_container_asan_correct(v)); in test_push_back()
75 std::vector<X> v; in test_emplace_back() local
76 v.reserve(2); in test_emplace_back()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/containers/sequences/vector/
Dasan_throw.pass.cpp59 std::vector<X> v; in test_push_back() local
60 v.reserve(2); in test_push_back()
61 v.push_back(X(2)); in test_push_back()
62 assert(v.size() == 1); in test_push_back()
64 v.push_back(X(66)); in test_push_back()
67 assert(v.size() == 1); in test_push_back()
69 assert(v.size() == 1); in test_push_back()
70 assert(is_contiguous_container_asan_correct(v)); in test_push_back()
75 std::vector<X> v; in test_emplace_back() local
76 v.reserve(2); in test_emplace_back()
[all …]

12345678910>>...421