Home
last modified time | relevance | path

Searched refs:put (Results 1 – 25 of 125) sorted by relevance

12345

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_queue.py91 q.put(111)
92 q.put(333)
93 q.put(222)
101 q.put(i)
106 q.put(last)
109 q.put(full, block=0)
114 q.put(full, timeout=0.01)
119 self.do_blocking_test(q.put, (full,), q.get, ())
120 self.do_blocking_test(q.put, (full, True, 10), q.get, ())
136 self.do_blocking_test(q.get, (), q.put, ('empty',))
[all …]
Dtest_telnetlib.py130 self.dataq.put(want)
139 self.dataq.put(want)
152 self.dataq.put(want)
160 self.dataq.put([self.block_long, EOF_sigil])
170 self.dataq.put([EOF_sigil])
183 self.dataq.put(want)
191 self.dataq.put([EOF_sigil])
207 self.dataq.put(want)
222 self.dataq.put([EOF_sigil])
243 self.dataq.put([EOF_sigil])
[all …]
Dtest_multiprocessing.py166 q.put(args)
167 q.put(kwds)
168 q.put(current.name)
170 q.put(bytes(current.authkey))
171 q.put(current.pid)
375 queue.put(1)
376 queue.put(2, True)
377 queue.put(3, True, None)
378 queue.put(4, False)
379 queue.put(5, False, None)
[all …]
Dtest_dummy_thread.py126 queue.put((arg1, arg2))
149 queue.put(_thread.get_ident())
Dregrtest.py507 output.put((None, None, None, None))
520 output.put((None, None, None, None))
525 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
527 output.put((None, None, None, None))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
Dwcgui.py253 d.put("URL: %s\n" % self.format_url(url))
255 d.put("Error: %s\n" % str(self.bad[url]))
257 d.put("Note: This is a root URL\n")
259 d.put("Status: checked\n")
262 d.put("Status: to check\n")
265 d.put("Status: unknown (!)\n")
268 d.put("Bad links from this page:\n")
271 d.put(" HREF %s" % self.format_url(link))
272 if self.format_url(link) != rawlink: d.put(" (%s)" %rawlink)
273 d.put("\n")
[all …]
Dwsgui.py44 self.msgq.put(format)
57 self.msgq.put(None)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
517 *put++ = (unsigned char)(state->length);
590 from = put + copy;
[all …]
Dinflate.c461 put = strm->next_out; \
472 strm->next_out = put; \
611 unsigned char FAR *put; /* next output */ local
886 zmemcpy(put, next, copy);
890 put += copy;
1142 *put++ = 0;
1157 from = put - state->offset;
1164 *put++ = *from++;
1170 *put++ = (unsigned char)(state->length);
1182 UPDATE(state->check, put - out, out);
Ddeflate.c470 int put; local
477 put = Buf_size - s->bi_valid;
478 if (put > bits)
479 put = bits;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
481 s->bi_valid += put;
483 value >>= put;
484 bits -= put;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dinfback.c121 put = strm->next_out; \
132 strm->next_out = put; \
204 put = state->window; \
207 if (out(out_desc, put, left)) { \
250 unsigned char FAR *put; /* next output */ local
277 put = state->window;
338 zmemcpy(put, next, copy);
342 put += copy;
500 *put++ = (unsigned char)(state->length);
573 from = put + copy;
[all …]
Dinflate.c405 put = strm->next_out; \
416 strm->next_out = put; \
560 unsigned char FAR *put; /* next output */ local
826 zmemcpy(put, next, copy);
830 put += copy;
1060 from = put - state->offset;
1067 *put++ = *from++;
1073 *put++ = (unsigned char)(state->length);
1085 UPDATE(state->check, put - out, out);
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
DUpdateDriverDxe.uni4 // This driver is intended to be put in a capsule (FV). If all goes well,
23 #string STR_MODULE_DESCRIPTION #language en-US "This driver is intended to be put in a cap…
DUpdateDriverDxe.inf4 # This driver is intended to be put in a capsule (FV). If all goes well,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dmarkov.py12 def put(self, seq): member in Markov
89 m.put(data)
Dnewslist.doc42 A directory in which to put the pages.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
DSynch.py177 def put(self, item): member in _test.Buffer
202 self.put(item) # Recursive call to test the locking
216 buffer.put(i)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DQueue.py107 def put(self, item, block=True, timeout=None): member in Queue
148 return self.put(item, False)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
DREADME25 test_parser.py program to put the parser module through its paces.
/device/linaro/bootloader/edk2/ArmPkg/Include/
DAsmMacroExport.inc4 ; function. The AREA prefix is required to put the function in its own
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
Drcvs.py147 self.put(message)
186 def put(self, message = ""): member in MyFile
191 messages = self.proxy.put(self.file, data, message)
DREADME12 rcvs Script to put in your bin directory
21 rrcs Script to put in your bin directory
Drrcs.py57 messages = x.put(fn, data, message)
DRCSProxy.py107 def put(self, name_rev, data, message=None): member in RCSProxyLocal
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/
DREADME32 scripts Some useful Python scripts that I put in my bin

12345