Home
last modified time | relevance | path

Searched refs:UINT32_C (Results 1 - 25 of 64) sorted by relevance

123

/third_party/astc-encoder/Source/
H A Dastcenc_mathlib_softfloat.cpp82 if (inp >= UINT32_C(0x10000)) in clz32()
87 if (inp >= UINT32_C(0x100)) in clz32()
111 uint32_t vl1 = UINT32_C(1) << shamt; in rtne_shift32()
113 uint32_t msk = (inp | UINT32_C(1)) & vl1; /* nonzero if odd. '| 1' forces it to 1 if the shamt is 0. */ in rtne_shift32()
122 uint32_t vl1 = (UINT32_C(1) << shamt) >> 1; in rtna_shift32()
130 uint32_t vl1 = UINT32_C(1) << shamt; in rtup_shift32()
150 #define WITH_MSB(a) (UINT32_C(a) | (1u << 31)) in sf16_to_sf32()
236 UINT32_C(0), UINT32_C(0), UINT32_C( in sf32_to_sf16()
[all...]
/third_party/vixl/test/
H A Dtest-api.cc59 {true, true, 1, UINT32_C(0x0)}, {true, false, 1, UINT32_C(0x1)}, in TEST()
60 {false, false, 1, UINT32_C(0x2)}, {false, false, 1, UINT32_C(0x3)}, in TEST()
61 {false, false, 1, UINT32_C(0x4)}, {false, false, 1, UINT32_C(0x5)}, in TEST()
62 {false, false, 1, UINT32_C(0x6)}, {false, false, 1, UINT32_C(0x7)}, in TEST()
63 {false, false, 1, UINT32_C(0x8)}, {false, false, 1, UINT32_C( in TEST()
[all...]
H A Dtest-operands.cc52 VIXL_CHECK(op.GetImmediate() == (~UINT32_C(42) + 1)); in TEST_AARCH32()
92 VIXL_CHECK(op.GetImmediate() == (~UINT32_C(42) + 1)); in TEST_AARCH32()
/third_party/selinux/libselinux/src/
H A Dmapping.c147 if (tperm & (UINT32_C(1)<<i)) { in unmap_perm()
149 tperm &= ~(UINT32_C(1)<<i); in unmap_perm()
194 tperm |= UINT32_C(1)<<i; in map_perm()
219 result |= UINT32_C(1)<<i; in map_decision()
221 result |= UINT32_C(1)<<i; in map_decision()
227 result |= UINT32_C(1)<<i; in map_decision()
229 result |= UINT32_C(1)<<i; in map_decision()
235 result |= UINT32_C(1)<<i; in map_decision()
240 result |= UINT32_C(1)<<i; in map_decision()
242 result |= UINT32_C( in map_decision()
[all...]
H A Dstringrep.c244 return map_perm(tclass, UINT32_C(1)<<i); in string_to_av_perm()
276 if ((UINT32_C(1)<<i) & av) in security_av_perm_to_string()
294 str = security_av_perm_to_string(tclass, av & (UINT32_C(1)<<i)); in security_av_string()
318 str = security_av_perm_to_string(tclass, av & (UINT32_C(1)<<i)); in security_av_string()
/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_rogue_pds_defs.h32 #define PVR_ROGUE_PDSINST_OPCODEC_ADD64 UINT32_C(0x00000008)
34 #define PVR_ROGUE_PDSINST_OPCODEC_ADD32 UINT32_C(0x00000009)
36 #define PVR_ROGUE_PDSINST_OPCODEC_SFTLP64 UINT32_C(0x0000000a)
38 #define PVR_ROGUE_PDSINST_OPCODEC_CMP UINT32_C(0x0000000b)
40 #define PVR_ROGUE_PDSINST_OPCODEC_BRA UINT32_C(0x0000000c)
42 #define PVR_ROGUE_PDSINST_OPCODEC_SP UINT32_C(0x0000000d)
44 #define PVR_ROGUE_PDSINST_OPCODEC_DDMAD UINT32_C(0x0000000e)
46 #define PVR_ROGUE_PDSINST_OPCODEC_DOUT UINT32_C(0x0000000f)
109 #define PVR_ROGUE_PDSINST_OPCODEB_SFTLP32 UINT32_C(0x00000002)
111 #define PVR_ROGUE_PDSINST_OPCODEB_STM UINT32_C(
[all...]
H A Dpvr_rogue_pds_encode.h291 encoded |= UINT32_C(0x0) << PVR_ROGUE_PDSINST_CMP_IM_SHIFT; in pvr_pds_inst_encode_cmp()
292 encoded |= UINT32_C(0x1) << PVR_ROGUE_PDSINST_CMP_SETCP_SHIFT; in pvr_pds_inst_encode_cmp()
315 encoded |= UINT32_C(0x1) << PVR_ROGUE_PDSINST_CMPI_IM_SHIFT; in pvr_pds_inst_encode_cmpi()
316 encoded |= UINT32_C(0x1) << PVR_ROGUE_PDSINST_CMPI_SETCP_SHIFT; in pvr_pds_inst_encode_cmpi()
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
H A Dastc_mathlib_softfloat.cpp74 if (inp >= UINT32_C(0x10000)) in clz32()
79 if (inp >= UINT32_C(0x100)) in clz32()
124 if ((res & UINT32_C(0x3FF)) == 0) in sf16_to_sf32()
129 return (res << 13) | UINT32_C(0x400000); in sf16_to_sf32()
133 uint32_t sign = (inpx & UINT32_C(0x8000)) << 16; in sf16_to_sf32()
134 uint32_t mskval = inpx & UINT32_C(0x7FFF); in sf16_to_sf32()
/third_party/python/Include/internal/
H A Dpycore_bitutils.h58 return ( ((word & UINT32_C(0x000000FF)) << 24) in _Py_bswap32()
59 | ((word & UINT32_C(0x0000FF00)) << 8) in _Py_bswap32()
60 | ((word & UINT32_C(0x00FF0000)) >> 8) in _Py_bswap32()
61 | ((word & UINT32_C(0xFF000000)) >> 24)); in _Py_bswap32()
/third_party/gptfdisk/
H A Dmbr.cc56 diskSignature = UINT32_C(0); in MakeProtectiveMBR()
62 partitions[0].SetLocation(UINT32_C(1), (uint32_t) diskSize - UINT32_C(1)); in MakeProtectiveMBR()
64 partitions[0].SetLocation(UINT32_C(1), UINT32_MAX); in MakeProtectiveMBR()
H A Dsupport.h53 #define SECTOR_SIZE UINT32_C(512)
68 #define HEADER_SIZE UINT32_C(92)
H A Dmbrpart.cc143 firstLBA = UINT32_C(0); in Empty()
144 lengthLBA = UINT32_C(0); in Empty()
292 chs[2] = (uint8_t) (cylinder & UINT32_C(0xFF)); in LBAtoCHS()
H A Dbsd.cc31 signature = UINT32_C(0); in BSDData()
32 signature2 = UINT32_C(0); in BSDData()
H A Ddiskio-windows.cc158 return UINT32_C(255); in GetNumHeads()
164 return UINT32_C(63); in GetNumSecsPerTrack()
H A Dbsd.h14 #define BSD_SIGNATURE UINT32_C(0x82564557) /* BSD disklabel signature ("magic") */
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
H A Dconfig_test.cc36 EXPECT_EQ(UINT32_C(0x03020100), number.value); in TEST()
38 EXPECT_EQ(UINT32_C(0x00010203), number.value); in TEST()
/third_party/node/deps/base64/base64/lib/arch/generic/32/
H A Ddec_loop.c13 if (str & UINT32_C(0x80000000)) { in dec_loop_generic_32_inner()
18 if (str & UINT32_C(1)) { in dec_loop_generic_32_inner()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/Support/
H A DDataTypes.h161 #ifndef UINT32_C
162 #define UINT32_C(C) C##ui32 macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
H A DDataTypes.h43 #if !defined(UINT32_C)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/Support/
H A DDataTypes.h63 #if !defined(UINT32_C)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/Support/
H A DDataTypes.h63 #if !defined(UINT32_C)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/Support/
H A DDataTypes.h63 #if !defined(UINT32_C)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/Support/
H A DDataTypes.h63 #if !defined(UINT32_C)
/third_party/selinux/libsepol/include/sepol/policydb/
H A Dpolicydb.h254 #define xperm_test(x, p) (UINT32_C(1) & ((p)[(x) >> 5] >> ((x) & 0x1f)))
255 #define xperm_set(x, p) ((p)[(x) >> 5] |= (UINT32_C(1) << ((x) & 0x1f)))
256 #define xperm_clear(x, p) ((p)[(x) >> 5] &= ~(UINT32_C(1) << ((x) & 0x1f)))
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_buffer.c80 uint32_t tag = UINT32_C(1) << (width - 1); in dxil_buffer_emit_vbr_bits()

Completed in 12 milliseconds

123