HomeSort by relevance Sort by last modified time
    Searched defs:countdown (Results 1 - 3 of 3) sorted by null

  /external/eigen/test/
exceptions.cpp 43 countdown--;
44 if(countdown<=0)
69 static int countdown; member in class:ScalarWithExceptions
73 int ScalarWithExceptions::countdown = 0; member in class:ScalarWithExceptions
77 ScalarWithExceptions::countdown = 100; \
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.cpp 244 v8::Local<v8::Integer> countdown = countdownWrapper->GetInternalField(V8PromiseCustom::PrimitiveWrapperPrimitiveIndex).As<v8::Integer>(); local
245 ASSERT(countdown->Value() >= 1);
246 if (countdown->Value() == 1) {
250 countdownWrapper->SetInternalField(V8PromiseCustom::PrimitiveWrapperPrimitiveIndex, v8::Integer::New(countdown->Value() - 1));
269 v8::Local<v8::Integer> countdown = countdownWrapper->GetInternalField(V8PromiseCustom::PrimitiveWrapperPrimitiveIndex).As<v8::Integer>(); local
270 ASSERT(countdown->Value() >= 1);
271 if (countdown->Value() == 1) {
275 countdownWrapper->SetInternalField(V8PromiseCustom::PrimitiveWrapperPrimitiveIndex, v8::Integer::New(countdown->Value() - 1));
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 100 Packet4f countdown = EIGEN_INIT_NEON_PACKET4(0, 1, 2, 3); local
101 return vaddq_f32(pset1<Packet4f>(a), countdown);
105 Packet4i countdown = EIGEN_INIT_NEON_PACKET4(0, 1, 2, 3); local
106 return vaddq_s32(pset1<Packet4i>(a), countdown);

Completed in 128 milliseconds