Searched defs:ok (Results 251 - 275 of 737) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Dpeer_channel.cc148 bool ok = waiting_socket_->Send(status, true, content_type, extra_headers, local
150 if (!ok) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_thread.h96 int ok = 1; local
97 ok &= (CloseHandle(condition->waiting_sem_) != 0);
98 ok &= (CloseHandle(condition->received_sem_) != 0);
99 ok &= (CloseHandle(condition->signal_event_) != 0);
100 return !ok;
119 int ok = 1; local
122 ok = SetEvent(condition->signal_event_);
125 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
128 return !ok;
133 int ok; local
[all...]
/external/chromium_org/third_party/libwebp/dec/
H A Dbuffer.c37 int ok = 1; local
42 ok = 0;
53 ok &= (y_size <= buf->y_size);
54 ok &= (u_size <= buf->u_size);
55 ok &= (v_size <= buf->v_size);
56 ok &= (y_stride >= width);
57 ok &= (u_stride >= (width + 1) / 2);
58 ok &= (v_stride >= (width + 1) / 2);
59 ok &= (buf->y != NULL);
60 ok
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture.c207 // down-cast is ok, thanks to WebPSafeMalloc
237 int ok; local
252 ok = import(&pic, rgba, stride) && WebPEncode(&config, &pic);
254 if (!ok) {
H A Dsyntax.c317 int ok = 0; local
322 ok = GeneratePartition0(enc);
323 if (!ok) return 0;
355 ok = ok && PutWebPHeaders(enc, size0, vp8_size, riff_size)
366 ok = ok && pic->writer(buf, size, pic);
368 ok = ok && WebPReportProgress(pic, enc->percent_ + percent_per_part,
373 if (ok
[all...]
H A Dwebpenc.c242 int ok = 1; local
244 ok = VP8EncDeleteAlpha(enc);
248 return ok;
306 return 1; // ok
311 int ok = 0; local
315 WebPEncodingSetError(pic, VP8_ENC_OK); // all ok so far
347 ok = VP8EncAnalyze(enc);
350 ok = ok && VP8EncStartAlpha(enc); // possibly done in parallel
352 ok
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c263 int ok = 0; local
280 ok = 1;
282 ok = ok && IsFull(tree);
283 if (!ok) VP8LHuffmanTreeFree(tree);
284 return ok;
293 int ok = 0; local
314 ok = 1;
316 ok = ok
[all...]
H A Dthread.c99 int ok = 1; local
100 ok &= (CloseHandle(condition->waiting_sem_) != 0);
101 ok &= (CloseHandle(condition->received_sem_) != 0);
102 ok &= (CloseHandle(condition->signal_event_) != 0);
103 return !ok;
121 int ok = 1; local
124 ok = SetEvent(condition->signal_event_);
127 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
130 return !ok;
135 int ok; local
220 int ok = 1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_dmatmp.h1190 GLboolean ok = GL_FALSE; local
1197 ok = HAVE_POINTS;
1200 ok = HAVE_LINES && !ctx->Line.StippleFlag;
1203 ok = HAVE_LINE_STRIPS && !ctx->Line.StippleFlag;
1206 ok = HAVE_LINE_STRIPS && !ctx->Line.StippleFlag;
1209 ok = HAVE_TRIANGLES;
1212 ok = HAVE_TRI_STRIPS;
1215 ok = HAVE_TRI_FANS;
1219 ok = GL_TRUE;
1222 ok
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp110 JSBool ok, found; local
122 ok = JS_TRUE;
128 ok = JS_FALSE;
139 ok = (fun != NULL);
140 if (ok)
146 return ok;
/external/chromium_org/third_party/skia/tests/
H A DGrMemoryPoolTest.cpp147 bool ok = true; local
148 for (size_t i = 0; ok && i < SK_ARRAY_COUNT(fIntArray); ++i) {
150 ok = false;
153 return ok && this->INHERITED::checkValues(v);
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_tclvar.c134 int ok = 0; local
140 while( !ok && pCur->i1<n ){
142 ok = next2(interp, pCur, pObj);
143 if( !ok ){
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DEncodeDecodeTest.cc102 int32_t ok = _acm->Add10MsData(_audioFrame); local
103 EXPECT_EQ(0, ok);
104 if (ok != 0) {
213 int32_t ok =_acm->PlayoutData10Ms(_frequency, &audioFrame); local
214 EXPECT_EQ(0, ok);
215 if (ok < 0){
/external/chromium_org/tools/win/link_limiter/
H A Dlimiter.cc101 BOOL ok = false; local
105 ok = GetLogicalProcessorInformation(
109 if (!ok && last_error == ERROR_INSUFFICIENT_BUFFER &&
113 } while (!ok && last_error == ERROR_INSUFFICIENT_BUFFER);
115 if (!ok) {
/external/chromium_org/v8/src/
H A Dinterface.h64 bool* ok) {
65 DoAdd(name, name->hash(), interface, zone, ok);
70 void Unify(Interface* that, Zone* zone, bool* ok);
73 void MakeValue(bool* ok) { argument
74 *ok = !IsModule();
75 if (*ok) Chase()->flags_ |= VALUE;
79 void MakeConst(bool* ok) { argument
80 *ok = !IsModule() && (IsConst() || !IsFrozen());
81 if (*ok) Chase()->flags_ |= VALUE + CONST;
85 void MakeModule(bool* ok) { argument
63 Add(const AstRawString* name, Interface* interface, Zone* zone, bool* ok) argument
91 Freeze(bool* ok) argument
[all...]
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp17 X<a> x; // ok, unique conversion to int
25 } constexpr ok; variable in typeref:struct:OK
37 constexpr int test_ok = ok; // ok
38 constexpr int test_explicit(expl); // ok
39 constexpr int test_ambiguous = ambig; // ok
47 auto new1 = new int[1][ok];
55 enum1 = ok,
64 alignas(ok) int alignas1;
73 int array1[ok];
[all...]
/external/eigen/unsupported/test/
H A Dopenglsupport.cpp77 GLint ok; local
81 glGetShaderiv(vtx_id,GL_COMPILE_STATUS,&ok);
82 if(!ok)
89 glGetShaderiv(frg_id,GL_COMPILE_STATUS,&ok);
90 if(!ok)
98 glGetProgramiv(prg_id,GL_LINK_STATUS,&ok);
99 if(!ok)
/external/flac/libFLAC/
H A Dstream_encoder_framing.c368 FLAC__bool ok; local
370 ok =
376 return ok;
/external/freetype/src/pfr/
H A Dpfrload.c636 FT_UInt n, ok; local
645 ok = ( len > 0 );
649 ok = 0;
653 if ( ok )
/external/icu/icu4c/source/common/
H A Dcaniter.cpp515 UBool ok = FALSE; local
531 ok = TRUE;
554 if (!ok)
/external/icu/icu4c/source/test/intltest/
H A Ducaconf.cpp226 UBool ok=TRUE; local
235 ok = FALSE;
243 ok = FALSE;
257 ok = FALSE;
260 if(!ok) {
/external/iproute2/tc/
H A Dm_action.c174 int ok = 0; local
213 if (ok)
234 ok++;
H A Dm_pedit.c470 int ok = 0, iok = 0; local
480 ok++;
485 if (!ok) {
496 ok++;
503 if (!ok) {
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.h97 int ok = 1; local
98 ok &= (CloseHandle(condition->waiting_sem_) != 0);
99 ok &= (CloseHandle(condition->received_sem_) != 0);
100 ok &= (CloseHandle(condition->signal_event_) != 0);
101 return !ok;
120 int ok = 1; local
123 ok = SetEvent(condition->signal_event_);
126 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
129 return !ok;
134 int ok; local
[all...]
/external/lldb/source/API/
H A DSBData.cpp469 void* ok = NULL; local
477 ok = m_opaque_sp->GetU8(&offset, buf, size);
478 if ((offset == old_offset) || (ok == NULL))
483 "(%p)", error.get(), offset, buf, size, ok);
484 return ok ? size : 0;

Completed in 7892 milliseconds

<<11121314151617181920>>