Home
last modified time | relevance | path

Searched refs:size (Results 1 – 25 of 35) sorted by relevance

12

/TaskScheduler/Scheduler/Source/
H A DMTDefaultAppInterop.cpp71 void* Memory::Alloc(size_t size, size_t align) in Alloc() argument
75 p = _mm_malloc(size, align); in Alloc()
77 if (posix_memalign(&p, size, align) != 0) in Alloc()
95 Memory::StackDesc Memory::AllocStack(size_t size) in AllocStack() argument
105 size_t pagesCount = size / pageSize; in AllocStack()
108 if ((size % pageSize) > 0) in AllocStack()
131 int pagesCount = (int)(size / pageSize); in AllocStack()
134 if ((size % pageSize) > 0) in AllocStack()
H A DMTScheduler.cpp763 waitingThreads[waitingSlotIndex % waitingThreads.size()] = ThreadId::Self(); in WaitGroup()
766 …MT_ASSERT( waitingThreads[waitingSlotIndex % waitingThreads.size()].IsEqual(ThreadId::Self()), "wa… in WaitGroup()
767 waitingThreads[waitingSlotIndex % waitingThreads.size()] = ThreadId(); in WaitGroup()
798 waitingThreads[waitingSlotIndex % waitingThreads.size()] = ThreadId::Self(); in WaitAll()
802 …MT_ASSERT( waitingThreads[waitingSlotIndex % waitingThreads.size()].IsEqual(ThreadId::Self()), "wa… in WaitAll()
803 waitingThreads[waitingSlotIndex % waitingThreads.size()] = ThreadId(); in WaitAll()
834 for (uint32 i = 0; i < waitingThreads.size(); i++) in IsWorkerThread()
/TaskScheduler/Scheduler/Include/
H A DMTConcurrentRingBuffer.h51 size_t size; variable
83 , size(0) in ConcurrentRingBuffer()
100 if (size >= numElements) in Push()
107 size++; in Push()
118 size_t elementsCount = size; in PopAll()
128 size -= elementsCount; in PopAll()
H A DMTAppInterop.h78 static void* Alloc(size_t size, size_t align = MT_DEFAULT_ALIGN);
81 static StackDesc AllocStack(size_t size);
/TaskScheduler/SchedulerTests/
H A Dmain.cpp65 size_t size = backtrace(callStack, 32); in PosixSignalHandler() local
69 char** symbollist = backtrace_symbols( callStack, size ); in PosixSignalHandler()
72 for ( size_t i = 0; i < size; i++ ) in PosixSignalHandler()
/TaskScheduler/ThirdParty/Boost.Context/asm/
H A Dmake_ppc64_sysv_elf_gas.S113 .size make_fcontext,24
179 .size make_fcontext, .-make_fcontext
182 .size .make_fcontext, .-.L.make_fcontext
184 .size .make_fcontext, .-.make_fcontext
H A Dmake_x86_64_sysv_elf_gas.S72 .size make_fcontext,.-make_fcontext
H A Dmake_i386_sysv_elf_gas.S74 .size make_fcontext,.-make_fcontext
H A Djump_ppc64_sysv_elf_gas.S113 .size jump_fcontext,24
256 .size jump_fcontext, .-jump_fcontext
259 .size .jump_fcontext, .-.L.jump_fcontext
261 .size .jump_fcontext, .-.jump_fcontext
H A Djump_x86_64_sysv_elf_gas.S95 .size jump_fcontext,.-jump_fcontext
H A Djump_i386_sysv_elf_gas.S87 .size jump_fcontext,.-jump_fcontext
H A Djump_arm_aapcs_pe_armasm.asm62 ; load TIB to save/restore thread size and limit.
H A Dmake_arm_aapcs_elf_gas.S68 .size make_fcontext,.-make_fcontext
H A Dmake_i386_ms_pe_masm.asm41 ; size for fc_mxcsr .. EIP + return-address for context-function
50 ; second arg of make_fcontext() == size of context-stack
52 ; negate stack size for LEA instruction (== substraction)
H A Dmake_arm64_aapcs_elf_gas.S83 .size make_fcontext,.-make_fcontext
H A Dmake_arm64_aapcs_macho_gas.S65 ; 0x0c = 3 instructions * size (4) before label 'finish'
H A Dmake_sparc_sysv_elf_gas.S82 .size make_fcontext,.-make_fcontext
H A Dmake_sparc64_sysv_elf_gas.S86 .size make_fcontext,.-make_fcontext
H A Djump_arm_aapcs_elf_gas.S90 .size jump_fcontext,.-jump_fcontext
H A Dmake_ppc32_sysv_elf_gas.S120 .size make_fcontext, .-make_fcontext
/TaskScheduler/Scheduler/Doxygen/
H A Dstyle.css8 font-size: 16px;
19 font-size: 16px;
24 font-size: 13px;
286 font-size: 13px;
407 font-size: 13px;
502 font-size: 11px;
563 font-size: 13px;
586 font-size: 13px;
597 font-size: 13px;
602 font-size: 13px;
[all …]
/TaskScheduler/ThirdParty/Boost.Context/
H A Dfcontext.h51 , size_t size
/TaskScheduler/ThirdParty/UnitTest++/tests/
H A DTestDeferredTestReporter.cpp52 CHECK_EQUAL(1, (int)reporter.GetResults().size()); in TEST_FIXTURE()
96 CHECK_EQUAL(2, (int)result.failures.size()); in TEST_FIXTURE()
/TaskScheduler/ThirdParty/UnitTest++/UnitTest++/
H A DMemoryOutStream.cpp80 MemoryOutStream::MemoryOutStream(int const size) in MemoryOutStream() argument
85 GrowBuffer(size); in MemoryOutStream()
H A DMemoryOutStream.h50 explicit MemoryOutStream(int const size = 256);

12