Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 672) sorted by relevance

12345678910>>...27

/device/generic/vulkan-cereal/stream-servers/vulkan/cereal/common/
Dgoldfish_vk_testing.cpp46 void checkEqual_VkExtent2D(const VkExtent2D* a, const VkExtent2D* b, OnFailCompareFunc onFail) { in checkEqual_VkExtent2D() argument
47 if (!((a->width) == (b->width))) { in checkEqual_VkExtent2D()
50 if (!((a->height) == (b->height))) { in checkEqual_VkExtent2D()
55 void checkEqual_VkExtent3D(const VkExtent3D* a, const VkExtent3D* b, OnFailCompareFunc onFail) { in checkEqual_VkExtent3D() argument
56 if (!((a->width) == (b->width))) { in checkEqual_VkExtent3D()
59 if (!((a->height) == (b->height))) { in checkEqual_VkExtent3D()
62 if (!((a->depth) == (b->depth))) { in checkEqual_VkExtent3D()
67 void checkEqual_VkOffset2D(const VkOffset2D* a, const VkOffset2D* b, OnFailCompareFunc onFail) { in checkEqual_VkOffset2D() argument
68 if (!((a->x) == (b->x))) { in checkEqual_VkOffset2D()
71 if (!((a->y) == (b->y))) { in checkEqual_VkOffset2D()
[all …]
Dgoldfish_vk_testing.h46 void checkEqual_VkExtent2D(const VkExtent2D* a, const VkExtent2D* b, OnFailCompareFunc onFail);
48 void checkEqual_VkExtent3D(const VkExtent3D* a, const VkExtent3D* b, OnFailCompareFunc onFail);
50 void checkEqual_VkOffset2D(const VkOffset2D* a, const VkOffset2D* b, OnFailCompareFunc onFail);
52 void checkEqual_VkOffset3D(const VkOffset3D* a, const VkOffset3D* b, OnFailCompareFunc onFail);
54 void checkEqual_VkRect2D(const VkRect2D* a, const VkRect2D* b, OnFailCompareFunc onFail);
56 void checkEqual_VkBaseInStructure(const VkBaseInStructure* a, const VkBaseInStructure* b,
59 void checkEqual_VkBaseOutStructure(const VkBaseOutStructure* a, const VkBaseOutStructure* b,
63 const VkBufferMemoryBarrier* b, OnFailCompareFunc onFail);
66 const VkDispatchIndirectCommand* b,
70 const VkDrawIndexedIndirectCommand* b,
[all …]
/device/generic/vulkan-cereal/third-party/astc-encoder/Source/
Dastcenc_vecmathlib_none_4.h94 ASTCENC_SIMD_INLINE explicit vfloat4(float a, float b, float c, float d) in vfloat4()
97 m[1] = b; in vfloat4()
224 ASTCENC_SIMD_INLINE explicit vint4(int a, int b, int c, int d) in vint4()
227 m[1] = b; in vint4()
336 ASTCENC_SIMD_INLINE explicit vmask4(bool a, bool b, bool c, bool d) in vmask4()
339 m[1] = b == false ? 0 : -1; in vmask4()
358 ASTCENC_SIMD_INLINE vmask4 operator|(vmask4 a, vmask4 b)
360 return vmask4(a.m[0] | b.m[0],
361 a.m[1] | b.m[1],
362 a.m[2] | b.m[2],
[all …]
Dastcenc_vecmathlib_common_4.h62 ASTCENC_SIMD_INLINE vint4 operator+(vint4 a, int b)
64 return a + vint4(b);
70 ASTCENC_SIMD_INLINE vint4& operator+=(vint4& a, const vint4& b)
72 a = a + b;
79 ASTCENC_SIMD_INLINE vint4 operator-(vint4 a, int b)
81 return a - vint4(b);
87 ASTCENC_SIMD_INLINE vint4 operator*(vint4 a, int b)
89 return a * vint4(b);
95 ASTCENC_SIMD_INLINE vint4 operator|(vint4 a, int b)
97 return a | vint4(b);
[all …]
Dastcenc_vecmathlib_avx2_8.h83 float a, float b, float c, float d, in vfloat8()
86 m = _mm256_set_ps(h, g, f, e, d, c, b, a); in vfloat8()
199 int a, int b, int c, int d, in vint8()
202 m = _mm256_set_epi32(h, g, f, e, d, c, b, a); in vint8()
313 ASTCENC_SIMD_INLINE vmask8 operator|(vmask8 a, vmask8 b)
315 return vmask8(_mm256_or_ps(a.m, b.m));
321 ASTCENC_SIMD_INLINE vmask8 operator&(vmask8 a, vmask8 b)
323 return vmask8(_mm256_and_ps(a.m, b.m));
329 ASTCENC_SIMD_INLINE vmask8 operator^(vmask8 a, vmask8 b)
331 return vmask8(_mm256_xor_ps(a.m, b.m));
[all …]
Dastcenc_vecmathlib_neon_4.h82 ASTCENC_SIMD_INLINE explicit vfloat4(float a, float b, float c, float d) in vfloat4()
84 float v[4] { a, b, c, d }; in vfloat4()
227 ASTCENC_SIMD_INLINE explicit vint4(int a, int b, int c, int d) in vint4()
229 int v[4] { a, b, c, d }; in vint4()
336 ASTCENC_SIMD_INLINE explicit vmask4(bool a, bool b, bool c, bool d) in vmask4()
340 b == true ? -1 : 0, in vmask4()
370 ASTCENC_SIMD_INLINE vmask4 operator|(vmask4 a, vmask4 b)
372 return vmask4(vorrq_u32(a.m, b.m));
378 ASTCENC_SIMD_INLINE vmask4 operator&(vmask4 a, vmask4 b)
380 return vmask4(vandq_u32(a.m, b.m));
[all …]
Dastcenc_vecmathlib_sse_4.h83 ASTCENC_SIMD_INLINE explicit vfloat4(float a, float b, float c, float d) in vfloat4()
85 m = _mm_set_ps(d, c, b, a); in vfloat4()
243 ASTCENC_SIMD_INLINE explicit vint4(int a, int b, int c, int d) in vint4()
245 m = _mm_set_epi32(d, c, b, a); in vint4()
356 ASTCENC_SIMD_INLINE explicit vmask4(bool a, bool b, bool c, bool d) in vmask4()
359 b == false ? 0 : -1, in vmask4()
387 ASTCENC_SIMD_INLINE vmask4 operator|(vmask4 a, vmask4 b)
389 return vmask4(_mm_or_ps(a.m, b.m));
395 ASTCENC_SIMD_INLINE vmask4 operator&(vmask4 a, vmask4 b)
397 return vmask4(_mm_and_ps(a.m, b.m));
[all …]
Dastcenc_find_best_partitioning.cpp255 const uint64_t b[2] in partition_mismatch2()
257 int v1 = popcount(a[0] ^ b[0]) + popcount(a[1] ^ b[1]); in partition_mismatch2()
258 int v2 = popcount(a[0] ^ b[1]) + popcount(a[1] ^ b[0]); in partition_mismatch2()
272 const uint64_t b[3] in partition_mismatch3()
274 int p00 = popcount(a[0] ^ b[0]); in partition_mismatch3()
275 int p01 = popcount(a[0] ^ b[1]); in partition_mismatch3()
276 int p02 = popcount(a[0] ^ b[2]); in partition_mismatch3()
278 int p10 = popcount(a[1] ^ b[0]); in partition_mismatch3()
279 int p11 = popcount(a[1] ^ b[1]); in partition_mismatch3()
280 int p12 = popcount(a[1] ^ b[2]); in partition_mismatch3()
[all …]
/device/google/redbull/
Dinit.msm.usb.configfs.rc31 rm /config/usb_gadget/g1/configs/b.1/f1
32 rm /config/usb_gadget/g1/configs/b.1/f2
33 rm /config/usb_gadget/g1/configs/b.1/f3
34 rm /config/usb_gadget/g1/configs/b.1/f4
35 rm /config/usb_gadget/g1/configs/b.1/f5
36 rm /config/usb_gadget/g1/configs/b.1/f6
37 rm /config/usb_gadget/g1/configs/b.1/f7
38 rm /config/usb_gadget/g1/configs/b.1/f8
39 rm /config/usb_gadget/g1/configs/b.1/f9
42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc"
[all …]
/device/google/sunfish/
Dinit.msm.usb.configfs.rc31 rm /config/usb_gadget/g1/configs/b.1/f1
32 rm /config/usb_gadget/g1/configs/b.1/f2
33 rm /config/usb_gadget/g1/configs/b.1/f3
34 rm /config/usb_gadget/g1/configs/b.1/f4
35 rm /config/usb_gadget/g1/configs/b.1/f5
36 rm /config/usb_gadget/g1/configs/b.1/f6
37 rm /config/usb_gadget/g1/configs/b.1/f7
38 rm /config/usb_gadget/g1/configs/b.1/f8
39 rm /config/usb_gadget/g1/configs/b.1/f9
42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc"
[all …]
/device/google/coral/
Dinit.msm.usb.configfs.rc31 rm /config/usb_gadget/g1/configs/b.1/f1
32 rm /config/usb_gadget/g1/configs/b.1/f2
33 rm /config/usb_gadget/g1/configs/b.1/f3
34 rm /config/usb_gadget/g1/configs/b.1/f4
35 rm /config/usb_gadget/g1/configs/b.1/f5
36 rm /config/usb_gadget/g1/configs/b.1/f6
37 rm /config/usb_gadget/g1/configs/b.1/f7
38 rm /config/usb_gadget/g1/configs/b.1/f8
39 rm /config/usb_gadget/g1/configs/b.1/f9
42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc"
[all …]
/device/generic/goldfish-opengl/android-emu/aemu/base/files/
DStream.cpp34 uint8_t b[2] = { (uint8_t)(value >> 8), (uint8_t)value }; in putBe16() local
35 write(b, 2U); in putBe16()
39 uint8_t b[2] = { 0, 0 }; in getBe16() local
40 read(b, 2U); in getBe16()
41 return ((uint16_t)b[0] << 8) | (uint16_t)b[1]; in getBe16()
45 uint8_t b[4] = { in putBe32() local
50 write(b, 4U); in putBe32()
54 uint8_t b[4] = { 0, 0, 0, 0 }; in getBe32() local
55 read(b, 4U); in getBe32()
56 return ((uint32_t)b[0] << 24) | in getBe32()
[all …]
/device/generic/vulkan-cereal/stream-servers/apigen-codec-common/X11/extensions/
Dsyncconst.h88 #define _XSyncValueGreaterThan(a, b)\ argument
89 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo))
90 #define _XSyncValueLessThan(a, b)\ argument
91 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo))
92 #define _XSyncValueGreaterOrEqual(a, b)\ argument
93 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>=(b).lo))
94 #define _XSyncValueLessOrEqual(a, b)\ argument
95 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<=(b).lo))
96 #define _XSyncValueEqual(a, b) ((a).lo==(b).lo && (a).hi==(b).hi) argument
102 #define _XSyncValueAdd(presult,a,b,poverflow) {\ argument
[all …]
/device/google/sunfish/json-c/
Dlinkhash.c158 #define mix(a,b,c) \ argument
160 a -= c; a ^= rot(c, 4); c += b; \
161 b -= a; b ^= rot(a, 6); a += c; \
162 c -= b; c ^= rot(b, 8); b += a; \
163 a -= c; a ^= rot(c,16); c += b; \
164 b -= a; b ^= rot(a,19); a += c; \
165 c -= b; c ^= rot(b, 4); b += a; \
193 #define final(a,b,c) \ argument
195 c ^= b; c -= rot(b,14); \
197 b ^= a; b -= rot(a,25); \
[all …]
/device/google/redbull/json-c/
Dlinkhash.c158 #define mix(a,b,c) \ argument
160 a -= c; a ^= rot(c, 4); c += b; \
161 b -= a; b ^= rot(a, 6); a += c; \
162 c -= b; c ^= rot(b, 8); b += a; \
163 a -= c; a ^= rot(c,16); c += b; \
164 b -= a; b ^= rot(a,19); a += c; \
165 c -= b; c ^= rot(b, 4); b += a; \
193 #define final(a,b,c) \ argument
195 c ^= b; c -= rot(b,14); \
197 b ^= a; b -= rot(a,25); \
[all …]
/device/google/coral/json-c/
Dlinkhash.c158 #define mix(a,b,c) \ argument
160 a -= c; a ^= rot(c, 4); c += b; \
161 b -= a; b ^= rot(a, 6); a += c; \
162 c -= b; c ^= rot(b, 8); b += a; \
163 a -= c; a ^= rot(c,16); c += b; \
164 b -= a; b ^= rot(a,19); a += c; \
165 c -= b; c ^= rot(b, 4); b += a; \
193 #define final(a,b,c) \ argument
195 c ^= b; c -= rot(b,14); \
197 b ^= a; b -= rot(a,25); \
[all …]
/device/google/gs201-sepolicy/tracking_denials/
Dbug_map1 cat_engine_service_app system_app_data_file dir b/238705599
2 dex2oat privapp_data_file dir b/276386138
3 hal_contexthub_default fwk_stats_service service_manager b/241714943
4 hal_power_default hal_power_default capability b/237492146
5 hal_radioext_default radio_vendor_data_file file b/237093466
6 incidentd debugfs_wakeup_sources file b/237492091
7 incidentd incidentd anon_inode b/268147092
8 init-insmod-sh vendor_ready_prop property_service b/239364360
9 kernel vendor_charger_debugfs dir b/238571150
10 kernel vendor_usb_debugfs dir b/227121550
[all …]
/device/google/cuttlefish/host/frontend/webrtc_operator/certs/
Dtrusted.pem5 5b:12:83:24:00:64:74:65:b5:10:1d:8b:d4:ab:2b:66:47:45:ad:7f
19 e7:44:83:b5:55:be:ec:37:f5:a7:f5:fc:4c:41:0b:
21 3b:f3:d8:2d:ef:6e:bc:89:ba:55:ed:04:35:d7:b6:
22 a8:78:47:70:ee:4a:4e:ba:42:94:1b:ce:d0:ed:b6:
23 56:96:c6:77:15:7f:e7:c5:2b:f5:1e:7b:f9:04:00:
24 71:a3:4b:b2:33:cb:6f:e4:a1:97:5b:04:7c:6e:c9:
25 85:08:21:2b:f2:2d:80:b6:09:4e:9f:25:52:57:71:
26 32:d7:c5:5b:fe:68:2d:f8:4e:18:13:a5:a8:6d:30:
30 71:43:e3:2b:cd:ce:c7:93:41:49:a9:49:53:e9:61:
32 b4:08:60:7f:85:2a:3f:fe:ea:eb:52:ed:8b:11:40:
[all …]
/device/generic/vulkan-cereal/third-party/glm/include/glm/detail/
D_vectorize.hpp59 …ALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, tvec1<T, P> const & b) in call()
61 return tvec1<T, P>(Func(a.x, b.x)); in call()
68 …ALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, tvec2<T, P> const & b) in call()
70 return tvec2<T, P>(Func(a.x, b.x), Func(a.y, b.y)); in call()
77 …ALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, tvec3<T, P> const & b) in call()
79 return tvec3<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z)); in call()
86 …ALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, tvec4<T, P> const & b) in call()
88 return tvec4<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w)); in call()
98 GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, T b) in call()
100 return tvec1<T, P>(Func(a.x, b)); in call()
[all …]
Dtype_vec4_simd.inl57 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b)
60 Result.data = _mm_add_ps(a.data, b.data);
69 static tvec4<double, P> call(tvec4<double, P> const & a, tvec4<double, P> const & b)
72 Result.data = _mm256_add_pd(a.data, b.data);
81 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b)
84 Result.data = _mm_sub_ps(a.data, b.data);
93 static tvec4<double, P> call(tvec4<double, P> const & a, tvec4<double, P> const & b)
96 Result.data = _mm256_sub_pd(a.data, b.data);
105 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b)
108 Result.data = _mm_mul_ps(a.data, b.data);
[all …]
/device/google/coral-sepolicy/tracking_denials/
Dbug_map1 dumpstate app_zygote process b/238263963
2 dumpstate dumpstate binder b/238953877
3 dumpstate system_data_file dir b/238837224
4 hal_drm_widevine default_prop file b/238263778
5 hal_power_default hal_power_default capability b/238263962
6 rfs_access unlabeled dir b/238705225
7 shell adb_keys_file file b/238836599
8 shell cache_file lnk_file b/238836599
9 shell init_exec lnk_file b/238836599
10 shell linkerconfig_file dir b/238836599
[all …]
/device/google/cuttlefish_prebuilts/bootloader/crosvm_x86_64/
DSystem.map2495 fff5b8d0 b i440fx
2496 fff5b8e0 b idt
2497 fff5c0e0 b idt_ptr
2498 fff5c0e8 b irq_handlers
2499 fff5c1a8 b spurious_irq_cnt
2500 fff5c1ac b state
2501 fff5c1c8 b images
2502 fff5c3dc b image_addr
2503 fff5c3e0 b image_size
2504 fff5c3e4 b bootefi_device_path
[all …]
/device/google/cuttlefish_prebuilts/bootloader/qemu_x86_64/
DSystem.map2578 fff5dbb4 b i440fx
2579 fff5dbb8 b ap_callbacks
2580 fff5dbbc b mp_info.0
2581 fff5dbc0 b mp_info.1
2582 fff5dbc4 b load_sipi_vector.msr_save
2583 fff5ddd0 b idt
2584 fff5e5d0 b idt_ptr
2585 fff5e5d8 b irq_handlers
2586 fff5e698 b spurious_irq_cnt
2587 fff5e69c b isa_irq_occupied
[all …]
/device/generic/vulkan-cereal/third-party/astc-encoder/Source/UnitTest/
Dtest_simd.cpp161 vfloat b(-1.0f, -1.0f, 3.12f, 3.12f); in TEST() local
162 vfloat r = change_sign(a, b); in TEST()
184 vfloat b(1.15f, -3.0f, -0.9f, 1.1f); in TEST() local
185 vfloat r = atan2(a, b); in TEST()
200 vfloat b(-1.0f, -1.0f, 3.12f, 3.12f, -1.0f, -1.0f, 3.12f, 3.12f); in TEST() local
201 vfloat r = change_sign(a, b); in TEST()
231 vfloat b(1.15f, -3.0f, -0.9f, 1.1f, 1.15f, -3.0f, -0.9f, 1.1f); in TEST() local
232 vfloat r = atan2(a, b); in TEST()
424 vfloat4 b(0.1f, 0.2f, 0.3f, 0.4f); in TEST() local
425 a = a + b; in TEST()
[all …]
/device/google/bramble-sepolicy/tracking_denials/
Dbug_map1 dumpstate system_data_file dir b/263178967
2 hal_drm_widevine default_prop file b/238263416
3 init app_data_file dir b/241172508
4 init gsi_data_file file b/241172508
5 init privapp_data_file dir b/241172508
6 init system_app_data_file dir b/241172508
7 netutils_wrapper netutils_wrapper capability b/239632601
8 qtelephony default_android_service service_manager b/264600139
9 shell qemu_sf_lcd_density_prop file b/238953936
10 shell ramdump_exec file b/239887266
[all …]

12345678910>>...27