HomeSort by relevance Sort by last modified time
    Searched refs:sema (Results 1 - 25 of 35) sorted by null

1 2

  /external/valgrind/main/coregrind/m_scheduler/
sema.c 3 /*--- Semaphore stuff. sema.c ---*/
40 Slower (than the removed futex-based sema scheme) but more portable
51 void ML_(sema_init)(vg_sema_t *sema)
55 r = VG_(pipe)(sema->pipe);
58 vg_assert(sema->pipe[0] != sema->pipe[1]);
60 sema->pipe[0] = VG_(safe_fd)(sema->pipe[0]);
61 sema->pipe[1] = VG_(safe_fd)(sema->pipe[1])
    [all...]
priv_sema.h 43 void ML_(sema_init) ( vg_sema_t *sema );
44 void ML_(sema_deinit) ( vg_sema_t *sema );
45 void ML_(sema_down) ( vg_sema_t *sema, Bool as_LL );
46 void ML_(sema_up) ( vg_sema_t *sema, Bool as_LL );
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Semaphore.c 44 sem_t *sema; local
46 sema = (sem_t *)SEC_OSAL_Malloc(sizeof(sem_t));
47 if (!sema)
50 if (sem_init(sema, 0, 0) != 0)
53 *semaphoreHandle = (OMX_HANDLETYPE)sema;
59 sem_t *sema = (sem_t *)semaphoreHandle; local
61 if (sema == NULL)
64 if (sem_destroy(sema) != 0)
67 SEC_OSAL_Free(sema);
73 sem_t *sema = (sem_t *)semaphoreHandle local
90 sem_t *sema = (sem_t *)semaphoreHandle; local
107 sem_t *sema = (sem_t *)semaphoreHandle; local
120 sem_t *sema = (sem_t *)semaphoreHandle; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
SDL_syssem.cpp 75 RSemaphore sema; local
76 sema.SetHandle(sem->handle);
77 sema.Signal(sema.Count());
78 sema.Close();
98 RSemaphore sema; local
99 sema.SetHandle(info->iHandle);
100 sema.Signal();
112 RSemaphore sema; local
113 sema.SetHandle(sem->handle)
189 RSemaphore sema; local
    [all...]
  /external/clang/include/clang/Sema/
AnalysisBasedWarnings.h 1 //=- AnalysisBasedWarnings.h - Sema warnings based on libAnalysis -*- C++ -*-=//
10 // This file defines AnalysisBasedWarnings, a worker object used by Sema
26 class Sema;
27 namespace sema { namespace in namespace:clang
31 namespace sema { namespace in namespace:clang
47 Sema &S;
90 AnalysisBasedWarnings(Sema &s);
100 }} // end namespace clang::sema
TemplateDeduction.h 9 // This file provides types used with Sema's template argument deduction
25 namespace sema { namespace in namespace:clang
ScopeInfo.h 32 namespace sema { namespace in namespace:clang
DelayedDiagnostic.h 27 namespace sema { namespace in namespace:clang
Sema.h 1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===//
10 // This file defines the Sema class, which performs semantic analysis and
18 #include "clang/Sema/Ownership.h"
19 #include "clang/Sema/AnalysisBasedWarnings.h"
20 #include "clang/Sema/IdentifierResolver.h"
21 #include "clang/Sema/ObjCMethodList.h"
22 #include "clang/Sema/DeclSpec.h"
23 #include "clang/Sema/ExternalSemaSource.h"
24 #include "clang/Sema/LocInfoType.h"
25 #include "clang/Sema/MultiInitializer.h
160 namespace sema { namespace in namespace:clang
    [all...]
  /external/valgrind/main/drd/tests/
pth_broadcast.c 143 struct csema sema; local
147 csema_ctr(&sema);
153 p->m_sema = &sema;
161 csema_p(&sema, thread_count);
176 csema_dtr(&sema);
  /external/clang/lib/Sema/
DelayedDiagnostic.cpp 17 #include "clang/Sema/DelayedDiagnostic.h"
20 using namespace sema;
AnalysisBasedWarnings.cpp 1 //=- AnalysisBasedWarnings.cpp - Sema warnings based on libAnalysis -*- C++ -*-=//
11 // Together they are used by Sema to issue warnings based on inexpensive
16 #include "clang/Sema/AnalysisBasedWarnings.h"
17 #include "clang/Sema/SemaInternal.h"
18 #include "clang/Sema/ScopeInfo.h"
55 Sema &S;
57 UnreachableCodeHandler(Sema &s) : S(s) {}
66 static void CheckUnreachable(Sema &S, AnalysisContext &AC) {
312 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
423 static bool SuggestInitializationFixit(Sema &S, const VarDecl *VD)
    [all...]
Sema.cpp 1 //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
15 #include "clang/Sema/SemaInternal.h"
16 #include "clang/Sema/DelayedDiagnostic.h"
21 #include "clang/Sema/CXXFieldCollector.h"
22 #include "clang/Sema/TemplateDeduction.h"
23 #include "clang/Sema/ExternalSemaSource.h"
24 #include "clang/Sema/ObjCMethodList.h"
25 #include "clang/Sema/PrettyDeclStackTrace.h"
26 #include "clang/Sema/Scope.h"
27 #include "clang/Sema/ScopeInfo.h
    [all...]
SemaType.cpp 14 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/Template.h"
28 #include "clang/Sema/DeclSpec.h"
29 #include "clang/Sema/DelayedDiagnostic.h"
53 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
111 Sema &sema; member in class:__anon4463::TypeProcessingState
135 TypeProcessingState(Sema &sema, Declarator &declarator)
136 : sema(sema), declarator(declarator)
    [all...]
SemaTemplateInstantiate.cpp 13 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/DeclSpec.h"
16 #include "clang/Sema/Initialization.h"
17 #include "clang/Sema/Lookup.h"
18 #include "clang/Sema/Template.h"
19 #include "clang/Sema/TemplateDeduction.h"
27 using namespace sema;
51 Sema::getTemplateInstantiationArgs(NamedDecl *D,
153 bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const {
170 Sema::InstantiatingTemplate:
    [all...]
SemaAccess.cpp 10 // This file provides Sema routines for C++ access control semantics.
14 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/DelayedDiagnostic.h"
16 #include "clang/Sema/Initialization.h"
17 #include "clang/Sema/Lookup.h"
26 using namespace sema;
28 /// A copy of Sema's enum without AR_delayed.
38 bool Sema::SetMemberAccessSpecifier(NamedDecl *MemberDecl,
141 /// Like sema::AccessedEntity, but kindly lets us scribble all over
193 const CXXRecordDecl *resolveInstanceContext(Sema &S) const
    [all...]
SemaExprMember.cpp 13 #include "clang/Sema/SemaInternal.h"
14 #include "clang/Sema/Lookup.h"
15 #include "clang/Sema/Scope.h"
24 using namespace sema;
28 static bool IsProvablyNotDerivedFrom(Sema &SemaRef,
92 static IMAKind ClassifyImplicitMemberAccess(Sema &SemaRef,
149 const Sema::ExpressionEvaluationContextRecord& record
151 bool isUnevaluatedExpression = (record.Context == Sema::Unevaluated);
186 static void DiagnoseInstanceReference(Sema &SemaRef,
214 Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS
    [all...]
SemaDecl.cpp 14 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/Initialization.h"
16 #include "clang/Sema/Lookup.h"
17 #include "clang/Sema/CXXFieldCollector.h"
18 #include "clang/Sema/Scope.h"
19 #include "clang/Sema/ScopeInfo.h"
32 #include "clang/Sema/DeclSpec.h"
33 #include "clang/Sema/ParsedTemplate.h"
36 #include "clang/Sema/DelayedDiagnostic.h"
39 // FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's
    [all...]
SemaExprObjC.cpp 14 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/Lookup.h"
16 #include "clang/Sema/Scope.h"
17 #include "clang/Sema/ScopeInfo.h"
18 #include "clang/Sema/Initialization.h"
29 using namespace sema;
32 ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs,
125 ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
156 ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
171 ExprResult Sema::ParseObjCSelectorExpression(Selector Sel
    [all...]
SemaStmt.cpp 14 #include "clang/Sema/SemaInternal.h"
15 #include "clang/Sema/Scope.h"
16 #include "clang/Sema/ScopeInfo.h"
17 #include "clang/Sema/Initialization.h"
18 #include "clang/Sema/Lookup.h"
33 using namespace sema;
35 StmtResult Sema::ActOnExprStmt(FullExprArg expr) {
49 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
54 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
64 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg)
    [all...]
  /external/clang/lib/ARCMigrate/
Internals.h 17 class Sema;
140 Sema &SemaRef;
144 MigrationPass(ASTContext &Ctx, Sema &sema, TransformActions &TA,
146 : Ctx(Ctx), SemaRef(sema), TA(TA), ARCMTMacroLocs(ARCMTMacroLocs) { }
  /frameworks/base/libs/utils/
Threads.cpp 523 HANDLE sema;
558 SignalObjectAndWait(hMutex, condState->sema, timeout, FALSE);
610 condState->sema = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
627 CloseHandle(condState->sema);
669 ReleaseSemaphore(condState->sema, 1, 0);
700 ReleaseSemaphore(condState->sema, condState->waitersCount, 0);
  /external/clang/include/clang/Basic/
Makefile 51 $(Verb) $(ClangTableGen) -gen-arm-neon-sema -o $(call SYSPATH, $@) $<
  /external/clang/
clang-tblgen-rules.mk 110 $(call transform-host-clang-td-to-out,arm-neon-sema)
  /external/valgrind/main/
Android.mk 188 coregrind/m_scheduler/sema.c \

Completed in 801 milliseconds

1 2