HomeSort by relevance Sort by last modified time
    Searched refs:sema (Results 1 - 25 of 43) 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
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/TypoCorrection.h
167 namespace sema { namespace in namespace:clang
    [all...]
ScopeInfo.h 33 namespace sema { namespace in namespace:clang
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 14 #include "clang/Sema/SemaInternal.h"
18 #include "clang/Sema/DelayedDiagnostic.h"
19 #include "clang/Sema/Lookup.h"
22 using namespace sema;
25 static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A) {
36 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
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, AnalysisDeclContext &AC) {
316 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
427 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/ScopeInfo.h"
15 #include "clang/Sema/SemaInternal.h"
16 #include "clang/Sema/Template.h"
30 #include "clang/Sema/DeclSpec.h"
31 #include "clang/Sema/DelayedDiagnostic.h"
32 #include "clang/Sema/Lookup.h"
56 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
114 Sema &sema; member in class:__anon4909::TypeProcessingState
138 TypeProcessingState(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 {
171 Sema::InstantiatingTemplate:
1744 namespace sema { namespace in namespace:clang
    [all...]
SemaLambda.cpp 13 #include "clang/Sema/DeclSpec.h"
14 #include "clang/Sema/Initialization.h"
15 #include "clang/Sema/Lookup.h"
16 #include "clang/Sema/Scope.h"
17 #include "clang/Sema/ScopeInfo.h"
18 #include "clang/Sema/SemaInternal.h"
22 using namespace sema;
24 CXXRecordDecl *Sema::createLambdaClosureType(SourceRange IntroducerRange,
53 CXXMethodDecl *Sema::startLambdaDefinition(CXXRecordDecl *Class,
162 LambdaScopeInfo *Sema::enterLambdaScope(CXXMethodDecl *CallOperator
    [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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
concurrence.h 267 __mx->sema = __rmx->sema;
273 static typename __enable_if<sizeof(&_Rm::sema), void>::__type
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
concurrence.h 267 __mx->sema = __rmx->sema;
273 static typename __enable_if<sizeof(&_Rm::sema), void>::__type
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 158 static void DRD_(sema_init)(DrdSema* sema);
159 static void DRD_(sema_destroy)(DrdSema* sema);
160 static void DRD_(sema_down)(DrdSema* sema);
161 static void DRD_(sema_up)(DrdSema* sema);
182 static void DRD_(sema_init)(DrdSema* sema)
184 DRD_IGNORE_VAR(sema->counter);
185 sema->counter = 0;
188 static void DRD_(sema_destroy)(DrdSema* sema)
192 static void DRD_(sema_down)(DrdSema* sema)
196 while (sema->counter == 0)
    [all...]
  /external/clang/lib/ARCMigrate/
Internals.h 17 class Sema;
144 Sema &SemaRef;
149 Sema &sema, TransformActions &TA,
152 SemaRef(sema), TA(TA),
  /frameworks/native/libs/utils/
Threads.cpp 485 HANDLE sema;
520 SignalObjectAndWait(hMutex, condState->sema, timeout, FALSE);
572 condState->sema = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
589 CloseHandle(condState->sema);
631 ReleaseSemaphore(condState->sema, 1, 0);
662 ReleaseSemaphore(condState->sema, condState->waitersCount, 0);
  /external/clang/include/clang/Basic/
Makefile 52 $(Verb) $(ClangTableGen) -gen-arm-neon-sema -o $(call SYSPATH, $@) $<
  /external/clang/
clang-tblgen-rules.mk 62 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Sema/AttrParsedAttrKinds.inc
63 $(intermediates)/include/clang/Sema/AttrParsedAttrKinds.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
64 $(intermediates)/include/clang/Sema/AttrParsedAttrKinds.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
69 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Sema/AttrParsedAttrList.inc
70 $(intermediates)/include/clang/Sema/AttrParsedAttrList.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
71 $(intermediates)/include/clang/Sema/AttrParsedAttrList.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
76 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Sema/AttrTemplateInstantiate.inc
77 $(intermediates)/include/clang/Sema/AttrTemplateInstantiate.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
78 $(intermediates)/include/clang/Sema/AttrTemplateInstantiate.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
131 $(call transform-host-clang-td-to-out,arm-neon-sema)
    [all...]
  /external/valgrind/main/
Android.mk 193 coregrind/m_scheduler/sema.c \

Completed in 3316 milliseconds

1 2