Searched refs:sema (Results 1 - 25 of 71) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSemaLambda.h21 namespace sema { namespace in namespace:clang
34 ArrayRef<const sema::FunctionScopeInfo *> FunctionScopes,
H A DAnalysisBasedWarnings.h27 namespace sema { namespace in namespace:clang
31 namespace sema { namespace in namespace:clang
105 } // namespace sema
H A DDelayedDiagnostic.h46 namespace sema { namespace in namespace:clang
325 inline void Sema::DelayedDiagnostics::add(const sema::DelayedDiagnostic &diag) {
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/
H A Dnv10_fence.h12 struct nvif_object sema; member in struct:nv10_fence_chan
H A Dnouveau_nv17_fence.c59 OUT_RING (prev, fctx->sema.handle);
68 OUT_RING (chan, fctx->sema.handle);
105 &fctx->sema);
H A Dnouveau_nv10_fence.c66 nvif_object_fini(&fctx->sema);
H A Dnouveau_nv50_fence.c66 &fctx->sema);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DCoroutineStmtBuilder.h27 sema::FunctionScopeInfo &Fn;
37 CoroutineStmtBuilder(Sema &S, FunctionDecl &FD, sema::FunctionScopeInfo &Fn,
H A DDelayedDiagnostic.cpp21 using namespace sema;
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/i386/
H A Dgthr-win32.c150 mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
156 CloseHandle ((HANDLE) mutex->sema);
163 WaitForSingleObject (mutex->sema, INFINITE) == WAIT_OBJECT_0)
187 return ReleaseSemaphore (mutex->sema, 1, NULL) ? 0 : 1;
198 mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
215 else if (WaitForSingleObject (mutex->sema, INFINITE) == WAIT_OBJECT_0)
256 return ReleaseSemaphore (mutex->sema, 1, NULL) ? 0 : 1;
265 CloseHandle ((HANDLE) mutex->sema);
H A Dgthr-win32.h351 void *sema; member in struct:__anon1197
358 void *sema; member in struct:__anon1198
639 __mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
645 CloseHandle ((HANDLE) __mutex->sema);
656 WaitForSingleObject (__mutex->sema, INFINITE) == WAIT_OBJECT_0)
690 return ReleaseSemaphore (__mutex->sema, 1, NULL) ? 0 : 1;
701 __mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
720 else if (WaitForSingleObject (__mutex->sema, INFINITE) == WAIT_OBJECT_0)
766 return ReleaseSemaphore (__mutex->sema, 1, NULL) ? 0 : 1;
775 CloseHandle ((HANDLE) __mutex->sema);
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/i386/
H A Dgthr-win32.c148 mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
154 CloseHandle ((HANDLE) mutex->sema);
161 WaitForSingleObject (mutex->sema, INFINITE) == WAIT_OBJECT_0)
185 return ReleaseSemaphore (mutex->sema, 1, NULL) ? 0 : 1;
196 mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
213 else if (WaitForSingleObject (mutex->sema, INFINITE) == WAIT_OBJECT_0)
254 return ReleaseSemaphore (mutex->sema, 1, NULL) ? 0 : 1;
263 CloseHandle ((HANDLE) mutex->sema);
H A Dgthr-win32.h351 void *sema; member in struct:__anon1460
358 void *sema; member in struct:__anon1461
620 __mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
626 CloseHandle ((HANDLE) __mutex->sema);
637 WaitForSingleObject (__mutex->sema, INFINITE) == WAIT_OBJECT_0)
671 return ReleaseSemaphore (__mutex->sema, 1, NULL) ? 0 : 1;
682 __mutex->sema = CreateSemaphoreW (NULL, 0, 65535, NULL);
701 else if (WaitForSingleObject (__mutex->sema, INFINITE) == WAIT_OBJECT_0)
747 return ReleaseSemaphore (__mutex->sema, 1, NULL) ? 0 : 1;
756 CloseHandle ((HANDLE) __mutex->sema);
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/examples/PrintFunctionNames/
H A DPrintFunctionNames.cpp69 clang::Sema &sema = Instance.getSema(); variable
72 *sema.LateParsedTemplateMap.find(FD)->second;
73 sema.LateTemplateParser(sema.OpaqueParser, LPT);
/netbsd-current/sys/kern/
H A Dsysv_sem.c65 struct semid_ds * sema __read_mostly;
127 sema = (void *)v;
128 sem = (void *)((uintptr_t)sema +
136 sema[i]._sem_base = 0;
137 sema[i].sem_perm.mode = 0;
163 vaddr_t v = (vaddr_t)sema;
240 old_sema = sema;
245 if (sema[i].sem_perm.mode & SEM_ALLOC)
289 if ((sema[i].sem_perm.mode & SEM_ALLOC) == 0)
291 memcpy(&new_sema[i], &sema[
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAbstractBasicWriter.h168 void writeFixedPointSemantics(const llvm::FixedPointSemantics &sema) { argument
169 asImpl().writeUInt32(sema.getWidth());
170 asImpl().writeUInt32(sema.getScale());
171 asImpl().writeUInt32(sema.isSigned() | sema.isSaturated() << 1 |
172 sema.hasUnsignedPadding() << 2);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h46 sema::DelayedDiagnosticPool DiagnosticPool;
92 sema::DelayedDiagnosticPool DiagnosticPool;
108 const sema::DelayedDiagnosticPool *parentPool)
130 sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() {
133 const sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() const {
186 const sema::DelayedDiagnosticPool &getDelayedDiagnosticPool() const {
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
H A Dnouveau_dispnv50_base507c.c176 evo_data(push, asyw->sema.offset);
177 evo_data(push, asyw->sema.acquire);
178 evo_data(push, asyw->sema.release);
179 evo_data(push, asyw->sema.handle);
298 wndw->sema = NV50_DISP_BASE_SEM0(wndw->id);
H A Dnouveau_dispnv50_wndwc37e.c199 evo_data(push, asyw->sema.offset);
200 evo_data(push, asyw->sema.acquire);
201 evo_data(push, asyw->sema.release);
202 evo_data(push, asyw->sema.handle);
313 wndw->sema = NV50_DISP_WNDW_SEM0(wndw->id);
H A Datom.h178 } sema; member in struct:nv50_wndw_atom
242 bool sema:1; member in struct:nv50_wndw_atom::nv50_wndw_atom_mask::__anon878
/netbsd-current/sys/dev/sbus/
H A Disp_sbus.c276 uint16_t sema, mbox; local
279 if (ISP_READ_ISR(isp, &isr, &sema, &mbox) == 0) {
285 isp_intr(isp, isr, sema, mbox);
304 uint16_t sema; local
307 sema = BXR2(sbc, IspVirt2Off(isp, BIU_SEMA));
308 isp_prt(isp, ISP_LOGDEBUG3, "ISR 0x%x SEMA 0x%x", isr, sema);
310 sema &= BIU_SEMA_LOCK;
311 if (isr == 0 && sema == 0) {
315 if ((*semap = sema) != 0) {
/netbsd-current/sys/miscfs/procfs/
H A Dprocfs_linux.c835 if ((sema[id].sem_perm.mode & SEM_ALLOC) != 0) {
838 (int) sema[id].sem_perm._key,
839 IXSEQ_TO_IPCID(id, sema[id].sem_perm),
840 sema[id].sem_perm.mode,
841 sema[id].sem_nsems,
842 sema[id].sem_perm.uid,
843 sema[id].sem_perm.gid,
844 sema[id].sem_perm.cuid,
845 sema[id].sem_perm.cgid,
846 (long long)sema[i
[all...]
/netbsd-current/sys/dev/ic/
H A Duniversereg.h83 u_int32_t mbox[4], sema[2]; member in struct:universereg
/netbsd-current/sys/sys/
H A Dsem.h194 extern struct semid_ds *sema; /* semaphore id pool */
/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DInternals.h158 Sema &sema, TransformActions &TA,
162 SemaRef(sema), TA(TA), CapturedDiags(capturedDiags),
157 MigrationPass(ASTContext &Ctx, LangOptions::GCMode OrigGCMode, Sema &sema, TransformActions &TA, const CapturedDiagList &capturedDiags, std::vector<SourceLocation> &ARCMTMacroLocs) argument

Completed in 329 milliseconds

123