OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:util_cpu_caps
(Results
1 - 17
of
17
) sorted by null
/external/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.c
81
struct
util_cpu_caps
util_cpu_caps
;
variable in typeref:struct:util_cpu_caps
119
util_cpu_caps
.has_altivec = 1;
138
util_cpu_caps
.has_altivec = 1;
224
memset(&
util_cpu_caps
, 0, sizeof
util_cpu_caps
);
231
util_cpu_caps
.nr_cpus = system_info.dwNumberOfProcessors;
234
util_cpu_caps
.nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
235
if (
util_cpu_caps
.nr_cpus == -1)
236
util_cpu_caps
.nr_cpus = 1
[
all
...]
u_cpu_detect.h
48
struct
util_cpu_caps
{
struct
70
extern struct
util_cpu_caps
71
util_cpu_caps
;
/external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_cpu.c
38
static struct
util_cpu_caps
*get_cpu_caps(void)
41
return &
util_cpu_caps
;
rtasm_x86sse.c
[
all
...]
/external/mesa3d/src/gallium/tests/unit/
translate_test.c
81
util_cpu_caps
.has_sse = 0;
82
util_cpu_caps
.has_sse2 = 0;
83
util_cpu_caps
.has_sse3 = 0;
84
util_cpu_caps
.has_sse4_1 = 0;
89
if(!
util_cpu_caps
.has_sse || !rtasm_cpu_has_sse())
94
util_cpu_caps
.has_sse2 = 0;
95
util_cpu_caps
.has_sse3 = 0;
96
util_cpu_caps
.has_sse4_1 = 0;
101
if(!
util_cpu_caps
.has_sse2 || !rtasm_cpu_has_sse())
106
util_cpu_caps
.has_sse3 = 0
[
all
...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.c
161
if (
util_cpu_caps
.has_sse4_1) {
438
util_cpu_caps
.has_avx) {
454
util_cpu_caps
.has_sse3 = 0;
455
util_cpu_caps
.has_ssse3 = 0;
456
util_cpu_caps
.has_sse4_1 = 0;
lp_bld_arit.c
88
if (type.floating &&
util_cpu_caps
.has_sse) {
94
else if (type.length <= 4 || !
util_cpu_caps
.has_avx) {
103
if (type.width == 64 &&
util_cpu_caps
.has_sse2) {
108
else if (type.length == 2 || !
util_cpu_caps
.has_avx) {
118
else if (
util_cpu_caps
.has_sse2 && type.length >= 2) {
132
if (
util_cpu_caps
.has_sse4_1) {
178
if (type.floating &&
util_cpu_caps
.has_sse) {
184
else if (type.length <= 4 || !
util_cpu_caps
.has_avx) {
193
if (type.width == 64 &&
util_cpu_caps
.has_sse2) {
198
else if (type.length == 2 || !
util_cpu_caps
.has_avx)
[
all
...]
lp_bld_logic.c
104
util_cpu_caps
.has_sse2 &&
118
if(type.floating &&
util_cpu_caps
.has_sse) {
169
else if(
util_cpu_caps
.has_sse2) {
488
else if (((
util_cpu_caps
.has_sse4_1 &&
490
(
util_cpu_caps
.has_avx &&
lp_bld_misc.cpp
261
if (
util_cpu_caps
.has_avx) {
lp_bld_pack.c
400
if(
util_cpu_caps
.has_sse2 && src_type.width * src_type.length >= 128) {
409
if (
util_cpu_caps
.has_sse4_1) {
517
if(
util_cpu_caps
.has_sse2 &&
lp_bld_format_yuv.c
87
if (
util_cpu_caps
.has_sse2 && n > 1) {
155
if (
util_cpu_caps
.has_sse2 && n > 1) {
lp_bld_conv.c
399
util_cpu_caps
.has_sse2)
454
util_cpu_caps
.has_avx) {
lp_bld_sample_aos.c
[
all
...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
lp_screen.c
452
if (!
util_cpu_caps
.has_sse2)
487
screen->num_threads =
util_cpu_caps
.nr_cpus > 1 ?
util_cpu_caps
.nr_cpus : 0;
lp_bld_depth.c
448
if(
util_cpu_caps
.has_sse && type.length == 4) {
458
else if(
util_cpu_caps
.has_avx && type.length == 8) {
lp_texture.c
974
uint alignment = MAX2(16,
util_cpu_caps
.cacheline);
[
all
...]
/external/mesa3d/src/gallium/auxiliary/draw/
draw_context.c
60
if (!
util_cpu_caps
.has_sse2)
Completed in 398 milliseconds