HomeSort by relevance Sort by last modified time
    Searched defs:exit (Results 76 - 100 of 202) sorted by null

1 2 34 5 6 7 8 9

  /external/kernel-headers/original/uapi/linux/
cn_proc.h 60 /* "last" is the last process event: exit,
129 } exit; member in union:proc_event::__anon25425
  /external/ltp/include/
tst_fuzzy_sync.h 160 int exit; member in struct:tst_fzsync_pair
212 * Exit and join thread B if necessary.
221 tst_atomic_store(1, &pair->exit);
273 pair->exit = 0;
386 * functions then we will quickly hit it. If it occurs during the exit code of
389 * However if the exit paths of A and B need to be aligned and (end_race_a -
393 * in A and B. Given enough time the following should happen where the exit
421 * the point where the entry code to Syscall A is synchronised with the exit
422 * to Syscall B and the entry code to Syscall B is synchronised with the exit
434 * difference between the exit times and divide it with the number of spin
592 int exit = 0; local
    [all...]
  /external/ltp/testcases/misc/math/float/
main.c 36 #define exit(x) myexit(x) macro
162 exit(1);
171 exit(0);
306 exit(1);
308 exit(0);
401 exit(1);
  /external/lzma/C/
LzFindMt.h 24 BoolInt exit; member in struct:_CMtSync
  /external/mdnsresponder/mDNSWindows/DLLX/
DNSSD.cpp 30 require_action( ok, exit, err = kDNSServiceErr_BadParam );
32 require_action( ok, exit, err = kDNSServiceErr_BadParam );
43 require_action( object != NULL, exit, err = kDNSServiceErr_NoMemory );
45 require_action( hr == S_OK, exit, err = kDNSServiceErr_Unknown );
49 require_noerr( err, exit );
55 require_noerr( err, exit );
59 exit:
86 require_action( ok, exit, err = kDNSServiceErr_BadParam );
88 require_action( ok, exit, err = kDNSServiceErr_BadParam );
90 require_action( ok, exit, err = kDNSServiceErr_BadParam );
460 require_action( SafeArrayGetDim( psa ) == 1, exit, err = kDNSServiceErr_Unknown ); local
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
VirtualMachine.java 456 * @param exitCode the exit code for the target VM. On some platforms,
457 * the exit code might be truncated, for example, to the lower order 8 bits.
461 void exit(int exitCode); method in interface:VirtualMachine
  /external/python/cpython2/Lib/unittest/test/
test_program.py 50 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
70 program = unittest.main(exit=False,
83 exit=True,
97 exit = False variable in class:InitialisableProgram
138 program.exit = True
142 program.exit = False
144 self.assertTrue(program.exit)
148 self.assertTrue(program.exit)
  /external/python/cpython2/Tools/pybench/
CommandLine.py 388 process is terminated with the return value as exit code.
393 def exit(self, rc=0): member in class:Application
395 """ Exit the program.
397 rc is used as exit code and passed back to the calling
438 sys.exit(1)
443 sys.exit(rc)
476 sys.exit(rc)
486 process is terminated with the return value as exit code.
548 # and the return value is passed to sys.exit() as argument.
606 The return value is passed to sys.exit() as argument. I
    [all...]
  /external/python/cpython3/Lib/idlelib/
run.py 84 # completion, exit and interruptable (the main thread) flags:
132 exit()
163 exit()
270 def exit(): function
271 """Exit subprocess, possibly after first clearing exit functions.
282 sys.exit(0)
302 Interrupt the MainThread and exit server if link is dropped.
436 # Keep a reference to stdin so that it won't try to exit IDLE if
448 "Override SocketIO method - terminate wait on callback and exit thread
    [all...]
  /external/python/cpython3/Lib/unittest/test/
test_discovery.py 17 exit = True variable in class:TestableTestProgram
    [all...]
test_program.py 52 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
83 program = unittest.TestProgram(testRunner=runner, exit=False,
99 testRunner=runner, exit=False,
107 program = unittest.main(exit=False,
120 exit=True,
134 exit = False variable in class:InitialisableProgram
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
XLoggerTest.java 94 logger.exit();
95 assertEquals(Integer.valueOf(0), logger.exit(0));
96 assertEquals(Boolean.FALSE, logger.exit(false));
99 verify((LoggingEvent) listAppender.list.get(0), "exit");
100 verify((LoggingEvent) listAppender.list.get(1), "exit with (0)");
101 verify((LoggingEvent) listAppender.list.get(2), "exit with (false)");
135 logger.exit();
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
RegionInfo.h 10 // Calculate a program structure tree built out of single entry single exit
143 /// @brief A single entry single exit Region.
154 /// BasicBlocks that merge several entry or exit edges so that after the merge
155 /// just one entry and one exit edge exists.
161 /// The \e Exit of a Region is the first BasicBlock that is passed after
162 /// leaving the Region. It is not an element of the Region. The exit BasicBlock,
215 // The exit BasicBlock of this region.
217 BasicBlock *exit; member in class:llvm::Region
246 /// @param Exit The exit basic block of the region
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
RegionInfo.h 10 // Calculate a program structure tree built out of single entry single exit
194 /// A single entry single exit Region.
205 /// BasicBlocks that merge several entry or exit edges so that after the merge
206 /// just one entry and one exit edge exists.
212 /// The \e Exit of a Region is the first BasicBlock that is passed after
213 /// leaving the Region. It is not an element of the Region. The exit BasicBlock,
278 // The exit BasicBlock of this region.
280 BlockT *exit; member in class:llvm::RegionBase
308 /// @param Exit The exit basic block of the region
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
functionalize_while.cc 59 Node* exit = nullptr; member in struct:tensorflow::__anon44103::Arg
357 // Enter ----> Merge --------> Switch --> Exit
436 // - Find the Exit successor.
451 // TODO(b/67425339): Allow general graph between switch and exit.
456 if (arg.exit != nullptr) {
458 "Duplicate Exit successors to ",
461 arg.exit = edge->dst();
466 ") and exit node of frame ",
547 // Copies edges to the Enter nodes and from the Exit nodes onto the While.
560 if (arg.exit != nullptr)
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 40 Label invoke, handler_entry, exit; local
47 // Called from C, so do not pop argc and args on exit (preserve sp)
135 __ b(&exit);
161 __ bind(&exit); // r0 holds result
322 // - space to be unwound on exit (includes the call JS arguments space and
410 // Leave the API exit frame.
530 // name below the exit frame to make GC aware of them.
  /external/v8/src/arm64/
code-stubs-arm64.cc 43 Label invoke, handler_entry, exit; local
128 __ B(&exit);
179 __ Bind(&exit);
295 // Put return address on the stack (accessible to GC through exit frame pc).
324 // 'stack_space' is the space to be unwound on exit (includes the call JS
424 // Leave the API exit frame.
573 // exit frame to make the GC aware of it.
  /external/v8/src/compiler/
code-generator-impl.h 180 // Eager deoptimization exit.
205 Label* exit() { return &exit_; } function in class:v8::internal::compiler::OutOfLineCode
  /external/v8/src/ia32/
code-stubs-ia32.cc 29 Label invoke, handler_entry, exit; local
78 __ jmp(&exit);
93 __ bind(&exit);
265 // Leave the API exit frame.
433 // name below the exit frame to make GC aware of them.
  /external/v8/src/mips/
code-stubs-mips.cc 30 Label invoke, handler_entry, exit; local
123 __ b(&exit); // b exposes branch delay slot.
156 __ bind(&exit); // v0 holds result
317 // - space to be unwound on exit (includes the call JS arguments space and
404 // Leave the API exit frame.
522 // name below the exit frame to make GC aware of them.
  /external/v8/src/mips64/
code-stubs-mips64.cc 29 Label invoke, handler_entry, exit; local
122 __ b(&exit); // b exposes branch delay slot.
155 __ bind(&exit); // v0 holds result
321 // - space to be unwound on exit (includes the call JS arguments space and
408 // Leave the API exit frame.
527 // name below the exit frame to make GC aware of them.
  /external/v8/src/ppc/
code-stubs-ppc.cc 37 Label invoke, handler_entry, exit; local
119 __ b(&exit);
145 __ bind(&exit); // r3 holds result
334 // - space to be unwound on exit (includes the call JS arguments space and
431 // Leave the API exit frame.
558 // name below the exit frame to make GC aware of them.
  /external/v8/src/s390/
code-stubs-s390.cc 36 Label invoke, handler_entry, exit; local
138 __ b(&exit, Label::kNear);
163 __ bind(&exit); // r2 holds result
374 // - space to be unwound on exit (includes the call JS arguments space and
465 // Leave the API exit frame.
590 // name below the exit frame to make GC aware of them.
  /art/compiler/optimizing/
induction_var_range_test.cc 763 HInstruction* exit = exit_block_->GetLastInstruction(); local
815 HInstruction* exit = exit_block_->GetLastInstruction(); local
    [all...]
register_allocator_test.cc 188 * exit
224 * exit
270 * exit
316 * exit
664 HBasicBlock* exit = new (GetAllocator()) HBasicBlock(graph); local
665 graph->AddBlock(exit);
666 block->AddSuccessor(exit);
667 exit->AddInstruction(new (GetAllocator()) HExit());
    [all...]

Completed in 1143 milliseconds

1 2 34 5 6 7 8 9