aarch32_cpudetect.c |
|
2578 |
aarch64_cpudetect.c |
|
7603 |
aom_once.h |
Implement a function wrapper to guarantee initialization
thread-safety for library singletons.
NOTE: This function uses static locks, and can only be
used with one common argument per compilation unit. So
file1.c:
aom_once(foo);
...
aom_once(foo);
file2.c:
aom_once(bar);
will ensure foo() and bar() are each called only once, but in
file1.c:
aom_once(foo);
aom_once(bar):
bar() will never be called because the lock is used up
by the call to foo().
|
2240 |
aom_ports.cmake |
|
3775 |
aom_timer.h |
Win32 specific includes
|
2837 |
arm.h |
|
1534 |
arm_cpudetect.h |
|
1622 |
bitops.h |
|
3280 |
emmintrin_compat.h |
From emmintrin.h (gcc 4.5.3) |
1801 |
float.asm |
|
887 |
mem.h |
Shift down with rounding for use when n >= 0. Usually value >= 0, but the
macro can be used with a negative value if the direction of rounding is
acceptable.
|
3717 |
mem_ops.h |
\file
\brief Provides portable memory access primitives
This function provides portable primitives for getting and setting of
signed and unsigned integers in 16, 24, and 32 bit sizes. The operations
can be performed on unaligned data regardless of hardware support for
unaligned accesses.
The type used to pass the integral values may be changed by defining
MEM_VALUE_T with the appropriate type. The type given must be an integral
numeric type.
The actual functions instantiated have the MEM_VALUE_T type name pasted
on to the symbol name. This allows the developer to instantiate these
operations for multiple types within the same translation unit. This is
of somewhat questionable utility, but the capability exists nonetheless.
Users not making use of this functionality should call the functions
without the type name appended, and the preprocessor will take care of
it.
NOTE: This code is not supported on platforms where char > 1 octet ATM.
|
6880 |
mem_ops_aligned.h |
\file
\brief Provides portable memory access primitives for operating on aligned
data
This file is split from mem_ops.h for easier maintenance. See mem_ops.h
for a more detailed description of these primitives.
|
7207 |
ppc.h |
|
806 |
ppc_cpudetect.c |
|
1990 |
sanitizer.h |
|
1382 |
x86.h |
For __cpuidex, __rdtsc |
12267 |
x86_abi_support.asm |
|
9663 |