OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:val
(Results
1 - 25
of
5081
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
conv.h
38
#define snd_host_to_LE_16(
val
) __cpu_to_le16(
val
)
40
#define snd_LE_to_host_16(
val
) __le16_to_cpu(
val
)
42
#define snd_host_to_LE_32(
val
) __cpu_to_le32(
val
)
44
#define snd_LE_to_host_32(
val
) __le32_to_cpu(
val
)
46
#define snd_host_to_BE_16(
val
) __cpu_to_be16(
val
)
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
conv.h
38
#define snd_host_to_LE_16(
val
) __cpu_to_le16(
val
)
40
#define snd_LE_to_host_16(
val
) __le16_to_cpu(
val
)
42
#define snd_host_to_LE_32(
val
) __cpu_to_le32(
val
)
44
#define snd_LE_to_host_32(
val
) __le32_to_cpu(
val
)
46
#define snd_host_to_BE_16(
val
) __cpu_to_be16(
val
)
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
conv.h
38
#define snd_host_to_LE_16(
val
) __cpu_to_le16(
val
)
40
#define snd_LE_to_host_16(
val
) __le16_to_cpu(
val
)
42
#define snd_host_to_LE_32(
val
) __cpu_to_le32(
val
)
44
#define snd_LE_to_host_32(
val
) __le32_to_cpu(
val
)
46
#define snd_host_to_BE_16(
val
) __cpu_to_be16(
val
)
[
all
...]
/external/qemu/
host-utils.h
52
static inline int clz32(uint32_t
val
)
55
if (
val
)
56
return __builtin_clz(
val
);
62
if (!(
val
& 0xFFFF0000U)) {
64
val
<<= 16;
66
if (!(
val
& 0xFF000000U)) {
68
val
<<= 8;
70
if (!(
val
& 0xF0000000U)) {
72
val
<<= 4;
74
if (!(
val
& 0xC0000000U))
[
all
...]
/external/clang/test/SemaCXX/
PR9884.cpp
5
Base(int
val
);
11
Derived(int
val
);
15
Derived::Derived(int
val
)
16
: Base(
val
)
/external/elfutils/host-darwin-fixup/
byteswap.h
20
static inline unsigned short bswap_16(unsigned short
val
)
22
return ((
val
& 0xff) << 8) | ((
val
>> 8) & 0xff);
25
static inline unsigned long bswap_32(unsigned long
val
)
27
return bswap_16((unsigned short)
val
) << 16 |
28
bswap_16((unsigned short)(
val
>> 16));
31
static inline unsigned long long bswap_64(unsigned long long
val
)
33
return ((((unsigned long long)bswap_32(
val
)) << 32) |
34
(((unsigned long long)bswap_32(
val
>> 32)) & 0xffffffffULL));
/external/linux-tools-perf/host-darwin-fixup/
byteswap.h
20
static inline unsigned short bswap_16(unsigned short
val
)
22
return ((
val
& 0xff) << 8) | ((
val
>> 8) & 0xff);
25
static inline unsigned long bswap_32(unsigned long
val
)
27
return bswap_16((unsigned short)
val
) << 16 |
28
bswap_16((unsigned short)(
val
>> 16));
31
static inline unsigned long long bswap_64(unsigned long long
val
)
33
return ((((unsigned long long)bswap_32(
val
)) << 32) |
34
(((unsigned long long)bswap_32(
val
>> 32)) & 0xffffffffULL));
/sdk/emulator/opengl/host/libs/Translator/EGL/
EglPbufferSurface.cpp
18
bool EglPbufferSurface::setAttrib(EGLint attrib,EGLint
val
) {
21
if(
val
< 0) return false;
22
m_width =
val
;
25
if(
val
< 0) return false;
26
m_height =
val
;
29
m_largest =
val
;
32
if(
val
!= EGL_NO_TEXTURE &&
val
!= EGL_TEXTURE_RGB &&
val
!= EGL_TEXTURE_RGBA) return false;
33
m_texFormat =
val
;
[
all
...]
/external/clang/test/CodeGenCXX/
switch-case-folding-2.cpp
5
int test(int
val
){
6
switch (
val
) {
switch-case-folding-1.cpp
4
int test(int
val
){
8
switch (
val
) {
throw-expressions.cpp
3
int
val
= 42;
variable
5
return throw
val
,
val
;
9
return
val
? throw
val
:
val
;
19
return 1 ? throw
val
:
val
;
/external/chromium_org/ui/events/gestures/
gesture_configuration.h
32
static void set_fling_max_cancel_to_down_time_in_ms(int
val
) {
33
fling_max_cancel_to_down_time_in_ms_ =
val
;
38
static void set_fling_max_tap_gap_time_in_ms(int
val
) {
39
fling_max_tap_gap_time_in_ms_ =
val
;
50
static void set_max_distance_for_two_finger_tap_in_pixels(double
val
) {
51
max_distance_for_two_finger_tap_in_pixels_ =
val
;
56
static void set_long_press_time_in_seconds(double
val
) {
57
long_press_time_in_seconds_ =
val
;
59
static void set_semi_long_press_time_in_seconds(double
val
) {
60
semi_long_press_time_in_seconds_ =
val
;
[
all
...]
/external/clang/test/Parser/
cxx-reference.cpp
6
int
val
;
variable
16
int & const X =
val
; // expected-error {{'const' qualifier may not be applied to a reference}}
17
int & volatile Y =
val
; // expected-error {{'volatile' qualifier may not be applied to a reference}}
18
int & const volatile Z =
val
; /* expected-error {{'const' qualifier may not be applied}} \
/bionic/libc/kernel/arch-x86/asm/
unaligned.h
22
#define put_unaligned(
val
, ptr) ((void)( *(ptr) = (
val
) ))
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/
T_iget_2.java
21
public float
val
= 123.0f;
field in class:T_iget_2
24
return
val
;
T_iget_9.java
21
public float
val
= 123.0f;
field in class:T_iget_9
24
return
val
;
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_wide/d/
T_iget_wide_2.java
21
public double
val
= 123.0d;
field in class:T_iget_wide_2
24
return
val
;
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_4.java
21
static long
val
= 123456789l;
field in class:T_invoke_static_4
24
return
val
;
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/d/
T_sget_2.java
21
public static float
val
= 123.0f;
field in class:T_sget_2
24
return
val
;
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_wide/d/
T_sget_wide_2.java
21
public static double
val
= 123.0d;
field in class:T_sget_wide_2
24
return
val
;
/development/ndk/platforms/android-9/arch-x86/include/asm/
unaligned.h
22
#define put_unaligned(
val
, ptr) ((void)( *(ptr) = (
val
) ))
/external/clang/test/CodeGen/
2010-01-13-MemBarrier.c
7
unsigned t(uint32_t *ptr, uint32_t
val
) {
10
return __sync_lock_test_and_set(ptr,
val
);
/external/kernel-headers/original/asm-x86/
unaligned.h
26
* @
val
: value to place
35
#define put_unaligned(
val
, ptr) ((void)( *(ptr) = (
val
) ))
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
unaligned.h
17
#define put_unaligned(
val
, ptr) ((void)( *(ptr) = (
val
) ))
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
unaligned.h
17
#define put_unaligned(
val
, ptr) ((void)( *(ptr) = (
val
) ))
Completed in 438 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>