Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 20 of 20) sorted by relevance

/TaskScheduler/Scheduler/Include/
H A DMTTypes.h56 typedef unsigned char byte; typedef
83 static_assert( sizeof(byte) == 1, "Invalid type size, byte" );
H A DMTStaticVector.h39 byte rawMemory_[sizeof(T) * CAPACITY + ALIGNMENT];
43byte* alignedMemory = (byte*)( ( (uintptr_t)&rawMemory_[0] + ALIGNMENT_MASK ) & ~(uintptr_t)ALIGNM… in IndexToObject()
H A DMTQueueMPMC.h50 byte rawMemory[ sizeof(Cell) * CAPACITY + ALIGNMENT ];
/TaskScheduler/SchedulerTests/Tests/
H A DStackSizeTests.cpp39 byte stackData[20000]; in SUITE()
54 byte stackData[262144]; in SUITE()
H A DPriorityTests.cpp46 byte cacheLine[64]; in SUITE()
/TaskScheduler/ThirdParty/Boost.Context/asm/
H A Dmake_ppc64_sysv_xcoff_gas.S11 # shift address in R3 to lower 16 byte boundary
15 # including 64 byte of linkage + parameter area (R1 % 16 == 0)
H A Dmake_ppc32_sysv_xcoff_gas.S13 # shift address in R3 to lower 16 byte boundary
17 # including 64 byte of linkage + parameter area (R1 % 16 == 0)
H A Dmake_ppc64_sysv_macho_gas.S98 ; shift address in R3 to lower 16 byte boundary
102 ; including 64 byte of linkage + parameter area (R1 16 == 0)
H A Dmake_ppc32_sysv_elf_gas.S78 # shift address in R3 to lower 16 byte boundary
82 # including 64 byte of linkage + parameter area (R1 % 16 == 0)
H A Dmake_ppc32_sysv_macho_gas.S77 ; shift address in R3 to lower 16 byte boundary
81 ; including 64 byte of linkage + parameter area (R1 % 16 == 0)
H A Dmake_mips32_o32_elf_gas.S48 # shift address in A0 to lower 16 byte boundary
54 # including 48 byte of shadow space (sp % 16 == 0)
H A Dmake_arm_aapcs_macho_gas.S45 @ shift address in A1 to lower 16 byte boundary
H A Dmake_ppc64_sysv_elf_gas.S124 # shift address in R3 to lower 16 byte boundary
128 # including 64 byte of linkage + parameter area (R1 % 16 == 0)
H A Dmake_arm_aapcs_elf_gas.S46 @ shift address in A1 to lower 16 byte boundary
H A Dmake_arm64_aapcs_elf_gas.S60 # shift address in x0 (allocated stack) to lower 16 byte boundary
H A Dmake_arm64_aapcs_macho_gas.S54 ; shift address in x0 (allocated stack) to lower 16 byte boundary
H A Dmake_arm_aapcs_pe_armasm.asm52 ; shift address in A1 to lower 16 byte boundary
H A Dmake_i386_ms_pe_masm.asm34 ; EAX might already point to a 16byte border
37 ; shift address in EAX to lower 16 byte boundary
/TaskScheduler/Scheduler/Include/Scopes/
H A DMTScopes.h135 byte rawMemory_[ capacity * sizeof(T) + ALIGNMENT];
140byte* alignedMemory = (byte*)( ( (uintptr_t)&rawMemory_[0] + ALIGNMENT_MASK ) & ~(uintptr_t)ALIGNM… in IndexToObject()
257 byte rawMemory_[ capacity * sizeof(T) + ALIGNMENT];
261byte* alignedMemory = (byte*)( ( (uintptr_t)&rawMemory_[0] + ALIGNMENT_MASK ) & ~(uintptr_t)ALIGNM… in IndexToObject()
382 byte rawMemory_[ capacity * sizeof(T) + ALIGNMENT ];
387byte* alignedMemory = (byte*)( ( (uintptr_t)&rawMemory_[0] + ALIGNMENT_MASK ) & ~(uintptr_t)ALIGNM… in IndexToObject()
/TaskScheduler/ThirdParty/Squish/
H A Dalpha.cpp166 int byte = ( value >> 8*j ) & 0xff; in WriteAlphaBlock() local
167 *dest++ = ( u8 )byte; in WriteAlphaBlock()
331 int byte = *src++; in DecompressAlphaDxt5() local
332 value |= ( byte << 8*j ); in DecompressAlphaDxt5()