HomeSort by relevance Sort by last modified time
    Searched refs:Sem (Results 1 - 9 of 9) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_syssem.c 32 struct SignalSemaphore Sem;
41 SDL_sem *sem; local
43 sem = (SDL_sem *)SDL_malloc(sizeof(*sem));
45 if ( ! sem ) {
50 D(bug("Creating semaphore %lx...\n",sem));
52 SDL_memset(sem,0,sizeof(*sem));
54 InitSemaphore(&sem->Sem);
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 194 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
195 return APFloat(Sem, fcZero, Negative);
197 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
198 return APFloat(Sem, fcInfinity, Negative);
206 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
210 return getQNaN(Sem, Negative, &fill);
212 return getQNaN(Sem, Negative, 0);
217 static APFloat getQNaN(const fltSemantics &Sem,
220 return makeNaN(Sem, false, Negative, payload);
224 static APFloat getSNaN(const fltSemantics &Sem,
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 89 static T PickFP(const llvm::fltSemantics *Sem, T IEEESingleVal,
92 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle)
94 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble)
96 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended)
98 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble)
100 assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad);
105 const llvm::fltSemantics *Sem) {
107 DenormMin = PickFP(Sem, "1.40129846e-45F", "4.9406564584124654e-324",
111 int Digits = PickFP(Sem, 6, 15, 18, 31, 33);
112 Epsilon = PickFP(Sem, "1.19209290e-7F", "2.2204460492503131e-16"
    [all...]
  /external/srec/tools/cmd/
srecres2utd.pl 78 } elsif(/^Sem[^:]+: invocab=(\d)/) { # same as CREC
82 } elsif(/^Sem:(\s+)(\S+)/) { # same as CREC
242 } elsif(/^Sem[^:]+: invocab=(\d)/) { # same as CREC
244 } elsif(/^Sem:(\s+)(\S+)/) { # same as CREC
  /external/llvm/lib/Support/
APFloat.cpp 679 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
681 APFloat value(Sem, uninitialized);
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp 398 static APInt nanbits(const fltSemantics &Sem,
402 return APFloat::getSNaN(Sem, Negative, &apfill).bitcastToAPInt();
404 return APFloat::getQNaN(Sem, Negative, &apfill).bitcastToAPInt();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineCasts.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 183 milliseconds