Home
last modified time | relevance | path

Searched defs:VAL (Results 1 – 25 of 195) sorted by relevance

12345678

/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/
H A Dmod.rs62 static VAL: EagerStorage<$t> = EagerStorage::new(__INIT); variable
68 static VAL: $t = __INIT; constant
92 static VAL: LazyStorage<$t, ()> = LazyStorage::new(); constant
98 static VAL: LazyStorage<$t, !> = LazyStorage::new(); variable
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/thread_local/fast_local/
H A Dmod.rs64 static VAL: EagerStorage<$t> = EagerStorage::new(__INIT); variable
70 static VAL: $t = __INIT; constant
94 static VAL: LazyStorage<$t, ()> = LazyStorage::new(); variable
100 static VAL: LazyStorage<$t, !> = LazyStorage::new(); constant
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/
H A Dmod.rs62 static VAL: EagerStorage<$t> = EagerStorage::new(__INIT); variable
68 static VAL: $t = __INIT; constant
92 static VAL: LazyStorage<$t, ()> = LazyStorage::new(); constant
98 static VAL: LazyStorage<$t, !> = LazyStorage::new(); variable
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/
H A Dmod.rs62 static VAL: EagerStorage<$t> = EagerStorage::new(__INIT); variable
68 static VAL: $t = __INIT; constant
92 static VAL: LazyStorage<$t, ()> = LazyStorage::new(); constant
98 static VAL: LazyStorage<$t, !> = LazyStorage::new(); constant
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/thread_local/fast_local/
H A Dmod.rs64 static VAL: EagerStorage<$t> = EagerStorage::new(__INIT); constant
70 static VAL: $t = __INIT; variable
94 static VAL: LazyStorage<$t, ()> = LazyStorage::new(); variable
100 static VAL: LazyStorage<$t, !> = LazyStorage::new(); constant
/aosp_15_r20/prebuilts/runtime/mainline/platform/sdk/include/external/perfetto/include/perfetto/public/
H A Dte_macros.h101 #define PERFETTO_TE_PROTO_FIELD_CSTR(ID, VAL) \ argument
109 #define PERFETTO_TE_PROTO_FIELD_BYTES(ID, VAL, SIZE) \ argument
117 #define PERFETTO_TE_PROTO_FIELD_VARINT(ID, VAL) \ argument
125 #define PERFETTO_TE_PROTO_FIELD_ZIGZAG(ID, VAL) \ argument
134 #define PERFETTO_TE_PROTO_FIELD_FIXED64(ID, VAL) \ argument
142 #define PERFETTO_TE_PROTO_FIELD_FIXED32(ID, VAL) \ argument
150 #define PERFETTO_TE_PROTO_FIELD_DOUBLE(ID, VAL) \ argument
158 #define PERFETTO_TE_PROTO_FIELD_FLOAT(ID, VAL) \ argument
H A Dcompiler.h33 #define PERFETTO_STATIC_CAST(TYPE, VAL) static_cast<TYPE>(VAL) argument
35 #define PERFETTO_STATIC_CAST(TYPE, VAL) ((TYPE)(VAL)) argument
41 #define PERFETTO_REINTERPRET_CAST(TYPE, VAL) reinterpret_cast<TYPE>(VAL) argument
43 #define PERFETTO_REINTERPRET_CAST(TYPE, VAL) ((TYPE)(VAL)) argument
/aosp_15_r20/external/perfetto/include/perfetto/public/
H A Dte_macros.h101 #define PERFETTO_TE_PROTO_FIELD_CSTR(ID, VAL) \ argument
109 #define PERFETTO_TE_PROTO_FIELD_BYTES(ID, VAL, SIZE) \ argument
117 #define PERFETTO_TE_PROTO_FIELD_VARINT(ID, VAL) \ argument
125 #define PERFETTO_TE_PROTO_FIELD_ZIGZAG(ID, VAL) \ argument
134 #define PERFETTO_TE_PROTO_FIELD_FIXED64(ID, VAL) \ argument
142 #define PERFETTO_TE_PROTO_FIELD_FIXED32(ID, VAL) \ argument
150 #define PERFETTO_TE_PROTO_FIELD_DOUBLE(ID, VAL) \ argument
158 #define PERFETTO_TE_PROTO_FIELD_FLOAT(ID, VAL) \ argument
H A Dcompiler.h33 #define PERFETTO_STATIC_CAST(TYPE, VAL) static_cast<TYPE>(VAL) argument
35 #define PERFETTO_STATIC_CAST(TYPE, VAL) ((TYPE)(VAL)) argument
41 #define PERFETTO_REINTERPRET_CAST(TYPE, VAL) reinterpret_cast<TYPE>(VAL) argument
43 #define PERFETTO_REINTERPRET_CAST(TYPE, VAL) ((TYPE)(VAL)) argument
/aosp_15_r20/external/ComputeLibrary/src/core/CL/cl_kernels/
H A Drepeat.h133 #define VAR_INIT_TO_CONST_DEF(ID, TYPE, VAR, VAL) TYPE VAR##ID = VAL argument
134 #define REPEAT_VAR_INIT_TO_CONST(N, TYPE, VAR, VAL) REPEAT_3_N(N, VAR_INIT_TO_CONST, TYPE, VAR, VAL) argument
145 #define ADD_CONST_TO_VAR_DEF(ID, TYPE, VAR, VAL) VAR##ID += (TYPE)VAL argument
146 #define REPEAT_ADD_CONST_TO_VAR(N, TYPE, VAR, VAL) REPEAT_3_N(N, ADD_CONST_TO_VAR, TYPE, VAR, VAL) argument
149 #define MLA_VAR_WITH_CONST_VEC_DEF(ID, VAR_A, VAR_B, VAL) VAR_A##ID += VAR_B##ID * VAL argument
150 #define REPEAT_MLA_VAR_WITH_CONST_VEC(N, VAR_A, VAR_B, VAL) REPEAT_3_N(N, MLA_VAR_WITH_CONST_VEC, V… argument
161 #define MAX_CONST_VAR_DEF(ID, TYPE, VAR, VAL) VAR##ID = max(VAR##ID, (TYPE)VAL) argument
162 #define REPEAT_MAX_CONST_VAR(N, TYPE, VAR, VAL) REPEAT_3_N(N, MAX_CONST_VAR, TYPE, VAR, VAL) argument
165 #define MIN_CONST_VAR_DEF(ID, TYPE, VAR, VAL) VAR##ID = min(VAR##ID, (TYPE)VAL) argument
166 #define REPEAT_MIN_CONST_VAR(N, TYPE, VAR, VAL) REPEAT_3_N(N, MIN_CONST_VAR, TYPE, VAR, VAL) argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/lexical_cast/test/
Dfloat_types_test.cpp114 #define CHECK_CLOSE_ABS_DIFF(VAL,PREFIX) \ argument
123 #define CHECK_CLOSE_ABS_DIFF(VAL,TYPE) \ argument
339 #define TEST_TO_FROM_CAST_AROUND_TYPED(VAL,STRING_TYPE) \ argument
355 # define TEST_TO_FROM_CAST_AROUND(VAL) \ argument
361 # define TEST_TO_FROM_CAST_AROUND(VAL) \ argument
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/thread_local/
H A Dstatic_local.rs21 static VAL: EagerStorage<$t> = EagerStorage { value: __INIT }; variable
37 static VAL: LazyStorage<$t> = LazyStorage::new(); variable
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/thread_local/
H A Dstatik.rs21 static VAL: EagerStorage<$t> = EagerStorage { value: __INIT }; variable
37 static VAL: LazyStorage<$t> = LazyStorage::new(); constant
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/thread_local/
H A Dstatik.rs21 static VAL: EagerStorage<$t> = EagerStorage { value: __INIT }; variable
37 static VAL: LazyStorage<$t> = LazyStorage::new(); variable
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/thread_local/
H A Dstatic_local.rs21 static VAL: EagerStorage<$t> = EagerStorage { value: __INIT }; variable
37 static VAL: LazyStorage<$t> = LazyStorage::new(); variable
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/thread_local/
H A Dstatik.rs21 static VAL: EagerStorage<$t> = EagerStorage { value: __INIT }; constant
37 static VAL: LazyStorage<$t> = LazyStorage::new(); variable
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/mediatek/mt8195/drivers/apusys/
Dapupwr_clkctl_def.h71 #define apupwr_writel(VAL, REG) mmio_write_32((uintptr_t)REG, VAL) argument
72 #define apupwr_writel_relax(VAL, REG) mmio_write_32_relax((uintptr_t)REG, VAL) argument
74 #define apupwr_clrbits(VAL, REG) mmio_clrbits_32((uintptr_t)REG, VAL) argument
75 #define apupwr_setbits(VAL, REG) mmio_setbits_32((uintptr_t)REG, VAL) argument
/aosp_15_r20/prebuilts/vndk/v31/arm/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v32/arm64/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v31/x86/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v32/x86/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v32/arm/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/bionic/libc/kernel/uapi/linux/
Dbtf.h66 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
67 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
68 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument

12345678