Searched defs:done (Results 1 - 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/BaseTools/
H A Dget_vsvars.bat35 if defined VCINSTALLDIR goto :done
44 :done label
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dfuture.c60 int i, found_docstring = 0, done = 0, prev_line = 0; local
77 if (done && s->lineno > prev_line)
91 if (done) {
103 done = 1;
108 done = 1;
113 done = 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_threaded_import.py13 done = thread.allocate_lock() variable
16 global N, critical_section, done
21 # Must release critical_section before releasing done, else the main
27 done.release()
55 global N, done
62 done.acquire()
68 done.acquire()
71 done.release()
H A Dtest_winreg.py239 done = False
246 while not done:
262 done = True variable in class:LocalWinregTests.test_changing_value.VeryActiveThread
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dfuture.c60 int i, found_docstring = 0, done = 0, prev_line = 0; local
84 if (done && s->lineno > prev_line)
96 if (done) {
108 done = 1;
113 done = 1;
118 done = 1;
H A Dthread_os2.h157 int done = 0; local
175 while (!done) {
194 done = 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dtokenizer.h24 int done; /* E_OK normally, E_EOF at EOF, otherwise error code */ member in struct:tok_state
25 /* NB If done != E_OK, cur must be == inp!!! */
H A Dtokenizer.c105 tok->done = E_OK;
628 tok->done = E_NOMEM;
835 tok->done = E_NOMEM;
841 tok->done = E_ERROR;
850 /* Get next char, updating state; error code goes into tok->done */
859 if (tok->done != E_OK)
868 tok->done = E_EOF;
884 tok->done = E_INTR;
887 tok->done = E_EOF;
904 tok->done
929 int done = 0; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dtokenizer.h24 int done; /* E_OK normally, E_EOF at EOF, otherwise error code */ member in struct:tok_state
25 /* NB If done != E_OK, cur must be == inp!!! */
H A Dtokenizer.c105 tok->done = E_OK;
608 tok->done = E_NOMEM;
815 tok->done = E_NOMEM;
821 tok->done = E_ERROR;
830 /* Get next char, updating state; error code goes into tok->done */
839 if (tok->done != E_OK)
848 tok->done = E_EOF;
864 tok->done = E_INTR;
867 tok->done = E_EOF;
884 tok->done
909 int done = 0; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
H A Dwsgui.py55 self.message("[done]")
222 done = 0 variable in class:AppArray
225 while not self.done:
233 self.done = 1
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg.h83 int done; variable
/device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Ia32/
H A DFspApiEntry.asm226 jz done
236 jae done ;Jif address is outside of microcode region
272 done: label
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dres_query.c249 int done = 0; local
252 *domain && !done;
293 /* anything else implies that we're done */
294 done++;
301 done++;
H A Dres_update.c131 newgroup, done, myzone, seen_before, numzones = 0; local
147 done = 0;
150 while (!done && dname) {
178 done = 1;
184 tmpzptr && !done;
193 done = 1;
197 if (done)
338 done = 1;
482 done = 1;
485 done
[all...]
H A Dres_send.c373 int done = 0, loops = 0; local
382 done = 1;
399 } while (!done);
874 int done = 0, loops = 0; local
884 done = 1;
899 } while (!done);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dxdrlib.py137 def done(self): member in class:Unpacker
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dlex.c655 int firstTime = 1, done = 0; local
659 while ( !done )
662 done = DumpNextNameInDef(&pdecl, output);
H A Dbits.c473 int max, done = 0; local
480 while ( !done )
500 else done = 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dgzio.c710 int done = 0; local
728 if (done) break;
739 done = (s->stream.avail_out != 0 || s->z_err == Z_STREAM_END);
H A Dzlib.h50 Compression can be done in a single step if the buffers are large
51 enough (for example if an input file is mmap'ed), or can be done by
122 int done; /* true when done reading gzip header (not used member in struct:gz_header_s
238 perform any compression: this will be done by deflate().
305 is to be done in a single step. In this case, avail_out must be at least
358 the zlib header if present: this will be done by inflate(). (So next_in and
535 not perform any compression: this will be done by deflate().
574 perform any compression: this will be done by deflate().
718 the uncompressed data as is done i
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dbinascii.c17 ** is done via a table.
529 PyDoc_STRVAR(doc_a2b_hqx, "ascii -> bin, done. Decode .hqx coding");
541 int done = 0; local
577 done = 1;
591 if ( leftbits && !done ) {
602 PyObject *rrv = Py_BuildValue("Oi", rv, done);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dzlib.h54 Compression can be done in a single step if the buffers are large enough,
55 or can be done by repeated calls of the compression function. In the latter
125 int done; /* true when done reading gzip header (not used member in struct:gz_header_s
242 this will be done by deflate().
329 is to be done in a single step. In this case, avail_out must be at least the
385 will be done by inflate(). (So next_in and avail_in may be modified, but
584 compression: this will be done by deflate().
628 not perform any compression: this will be done by deflate().
797 the uncompressed data as is done i
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dbinascii.c17 ** is done via a table.
535 PyDoc_STRVAR(doc_a2b_hqx, "ascii -> bin, done. Decode .hqx coding");
547 int done = 0; local
583 done = 1;
597 if ( leftbits && !done ) {
611 PyObject *rrv = Py_BuildValue("Oi", rv, done);
/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
H A Dusb.c55 unsigned char done; member in struct:ep_type
152 endpoints[i].done = 1;
508 endpoints[ep].done = 1;//true
957 * enumeration done, we now know the speed
965 VERBOSE("enum done intr. Maxpacket:%d\n", maxpacket);
997 endpoints[0].done = 1;//true
1009 endpoints[0].done = 1;//true
1040 endpoints[0].done = 1;
1053 if (epints & DXEPINT_SETUP) { /* SETUP phase done */
1105 endpoints[1].done
[all...]

Completed in 867 milliseconds

12