/external/openssl/apps/ |
engine.c | 296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); local 303 for(loop = 0; loop < num; loop++) 307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
|
/external/openssl/crypto/bn/ |
bn_ctx.c | 242 unsigned loop = 0; local 243 while(loop < BN_CTX_POOL_SIZE) 244 fprintf(stderr,"%02x ", pool->vals[loop++].dmax); 370 unsigned int loop = 0; local 372 while(loop++ < BN_CTX_POOL_SIZE) 389 unsigned int loop = 0; local 391 while(loop++ < BN_CTX_POOL_SIZE) 408 unsigned int loop = 0; local 413 while(loop++ < BN_CTX_POOL_SIZE)
|
/external/openssl/crypto/engine/ |
eng_dyn.c | 408 int num, loop; local 416 for(loop = 0; loop < num; loop++) 418 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop);
|
/external/stlport/ |
configure.bat | 44 REM option loop 46 :loop label 97 goto loop 608 REM * End loop
|
/external/v8/src/arm/ |
regexp-macro-assembler-arm.cc | 320 Label loop; 321 __ bind(&loop); 339 __ b(lt, &loop); 414 Label loop; local 415 __ bind(&loop); 427 __ b(lt, &loop); 738 // unroll the loop once to add an operation between a load of a register [all...] |
/external/v8/src/ia32/ |
codegen-ia32.cc | 206 // Copy loop for aligned source and destination. 212 // Main copy loop. 213 Label loop; local 214 __ bind(&loop); 225 __ j(not_zero, &loop); 250 // Copy loop for unaligned source and aligned destination. 258 // Main copy loop 259 Label loop; local 260 __ bind(&loop); 271 __ j(not_zero, &loop); 384 Label loop, entry, convert_hole, gc_required, only_change_map; local 516 Label loop, entry, convert_hole, gc_required, only_change_map, success; local [all...] |
/external/v8/src/mips/ |
regexp-macro-assembler-mips.cc | 323 Label loop; 324 __ bind(&loop); 340 __ Branch(&loop, lt, a0, Operand(a1)); 424 Label loop; local 425 __ bind(&loop); 439 __ Branch(&loop, lt, a0, Operand(a1)); 733 // unroll the loop once to add an operation between a load of a register [all...] |
/external/v8/src/x64/ |
codegen-x64.cc | 172 // If C2 is set, computation only has partial result. Loop to 299 Label loop, entry, convert_hole; local 338 // Conversion loop. 339 __ bind(&loop); 360 __ j(not_sign, &loop); 375 Label loop, entry, convert_hole, gc_required, only_change_map; local 397 // Prepare for conversion loop. 411 __ bind(&loop); 449 __ j(not_sign, &loop);
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptDebugServer.cpp | 346 EventLoop loop; local 348 while (!m_doneProcessingDebuggerEvents && !loop.ended()) 349 loop.cycle();
|
/external/webkit/Source/WebKit/gtk/tests/ |
testatkroles.c | 54 GMainLoop* loop; member in struct:__anon16383 59 if (g_main_loop_is_running(fixture->loop)) 60 g_main_loop_quit(fixture->loop); 70 fixture->loop = g_main_loop_new(NULL, TRUE); 81 g_main_loop_run(fixture->loop); 87 g_main_loop_unref(fixture->loop);
|
testcopyandpaste.c | 38 GMainLoop* loop; member in struct:__anon16385 63 fixture->loop = g_main_loop_new(NULL, TRUE); 74 g_main_loop_unref(fixture->loop); 109 g_main_loop_quit(fixture->loop); 134 g_main_loop_run(fixture->loop); 176 g_main_loop_quit(currentFixture->loop); 225 g_main_loop_run(fixture->loop);
|
testdomdocument.c | 38 GMainLoop* loop; member in struct:__anon16386 43 if (g_main_loop_is_running(fixture->loop)) 44 g_main_loop_quit(fixture->loop); 51 fixture->loop = g_main_loop_new(NULL, TRUE); 59 g_main_loop_run(fixture->loop); 66 g_main_loop_unref(fixture->loop);
|
testkeyevents.c | 40 GMainLoop* loop; member in struct:__anon16392 67 fixture->loop = g_main_loop_new(NULL, TRUE); 78 g_main_loop_unref(fixture->loop); 98 g_main_loop_quit(fixture->loop); 141 g_main_loop_run(fixture->loop); 206 g_main_loop_quit(fixture->loop); 222 g_main_loop_quit(fixture->loop);
|
testwebresource.c | 32 GMainLoop* loop; variable 174 g_main_loop_quit(loop); 186 loop = g_main_loop_new(NULL, TRUE); 201 g_main_loop_run(loop); 214 g_main_loop_unref(loop); 228 g_main_loop_quit(loop); 233 g_main_loop_quit(loop); 247 loop = g_main_loop_new(NULL, TRUE); 261 g_main_loop_run(loop); 265 g_main_loop_run(loop); [all...] |
/frameworks/av/media/libstagefright/chromium_http/ |
support.cpp | 418 MessageLoop *loop = gNetworkThread->message_loop(); local 419 loop->PostTask( 480 MessageLoop *loop = gNetworkThread->message_loop(); local 481 loop->PostTask( 506 MessageLoop *loop = gNetworkThread->message_loop(); local 507 loop->PostTask(
|
/frameworks/av/media/libstagefright/omx/ |
OMX.cpp | 63 bool loop(); 100 // is released within the CallbackDispatcherThread loop 124 bool OMX::CallbackDispatcher::loop() { function in class:android::OMX::CallbackDispatcher 151 return mDispatcher->loop();
|
/frameworks/base/core/java/android/os/ |
Looper.java | 24 * Class used to run a message loop for a thread. Threads by default do 25 * not have a message loop associated with them; to create one, call 26 * {@link #prepare} in the thread that is to run the loop, and then 27 * {@link #loop} to have it process messages until the loop is stopped. 29 * <p>Most interaction with a message loop is through the 33 * using the separation of {@link #prepare} and {@link #loop} to create an 49 * Looper.loop(); 68 * this looper, before actually starting the loop. Be sure to call 69 * {@link #loop()} after calling this method, and end it by callin 111 public static void loop() { method in class:Looper [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaAudioManagerTest.java | 60 Looper.loop();
|
/frameworks/base/services/java/com/android/server/ |
CountryDetectorService.java | 195 Looper.loop();
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
CallerInfoTest.java | 192 mLooper.loop();
|
/frameworks/wilhelm/src/android/ |
android_GenericMediaPlayer.cpp | 429 int32_t loop = 0; local 430 if (msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop)) { 431 if (loop) { 438 (void) mPlayer->setLooping(loop);
|
android_GenericPlayer.cpp | 179 void GenericPlayer::loop(bool loop) { function in class:android::GenericPlayer 180 SL_LOGV("GenericPlayer::loop %s", loop ? "true" : "false"); 182 msg->setInt32(WHATPARAM_LOOP_LOOPING, (int32_t)loop); 394 // it is strictly verboten to call those methods outside of the event loop
|
/frameworks/wilhelm/tests/examples/ |
slesTestSendToPresetReverb.cpp | 74 SLmillibel sendLevel, bool alwaysOn, bool useFd, bool loop) 273 if (loop) { 344 bool loop = false; local 354 } else if (!strcmp(arg, "--loop")) { 355 loop = true; 362 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel " 381 (SLmillibel)atoi(argv[i+3]), alwaysOn, useFd, loop);
|
/system/core/libpixelflinger/codeflinger/ |
disassem.c | 582 int loop; local 590 for (loop = 0; loop < 17; ++loop) { 592 if (loop == 16 || !(insn & (1 << loop))) { 597 if (start == loop - 1) 600 di->di_printf("r%d-r%d", start, loop - 1); 604 if (insn & (1 << loop)) 605 start = loop; [all...] |
/system/core/toolbox/ |
mount.c | 14 #include <linux/loop.h> 95 parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra, int* loop, char *loopdev) 99 *loop = 0; 108 if (strncmp(s, "loop=", 5) == 0) { 109 *loop = 1; 114 if (strcmp(s, "loop") == 0) { 115 *loop = 1; 146 do_mount(char *dev, char *dir, char *type, unsigned long rwflag, void *data, int loop, 152 if (loop) { 165 perror("open loop device failed") 282 int loop = 0; local [all...] |