HomeSort by relevance Sort by last modified time
    Searched defs:PROTO (Results 1 - 16 of 16) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
PolicyEntryOperation.h 21 #define PROTO BIT(2)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /external/libpcap/
grammar.h 58 PROTO = 268,
180 #define PROTO 268
grammar.c 136 #include "os-proto.h"
139 #define QSET(q, p, d, a) (q).proto = (p),\
361 PROTO = 268,
483 #define PROTO 268
969 "NETMASK", "PORT", "PORTRANGE", "LESS", "GREATER", "PROTO", "PROTOCHAIN",
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
431 if self.proto >= 2:
462 if self.proto >= 2:
534 proto = self.proto
    [all...]
  /external/python/cpython2/Lib/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
437 if self.proto >= 2:
468 if self.proto >= 2:
540 proto = self.prot
    [all...]
  /external/python/cpython3/Lib/
pickle.py 149 PROTO = b'\x80' # identify pickle protocol
383 self.proto = int(protocol)
405 if self.proto >= 2:
406 self.write(PROTO + pack("<B", self.proto))
407 if self.proto >= 4:
437 if self.proto >= 4:
496 rv = reduce(self.proto)
552 if self.proto >= 2 and func_name == "__newobj_ex__":
560 if self.proto >= 4
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
431 if self.proto >= 2:
462 if self.proto >= 2:
534 proto = self.prot
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
431 if self.proto >= 2:
462 if self.proto >= 2:
534 proto = self.prot
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
431 if self.proto >= 2:
462 if self.proto >= 2:
534 proto = self.prot
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 149 PROTO = '\x80' # identify pickle protocol
205 self.proto = int(protocol)
222 if self.proto >= 2:
223 self.write(PROTO + chr(self.proto))
306 rv = reduce(self.proto)
361 if self.proto >= 2 and getattr(func, "__name__", "") == "__newobj__":
431 if self.proto >= 2:
462 if self.proto >= 2:
534 proto = self.prot
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 75 #define PROTO '\x80' /* identify pickle protocol */
342 int proto; member in struct:Picklerobject
344 /* bool, true if proto > 0 */
1013 if (self->proto >= 2) {
1083 if (self->proto >= 2) {
1161 /* proto < 2: write the repr and newline. This is quadratic-time
3128 int proto = 0; local
5681 int proto = 0; local
5710 int proto = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 75 #define PROTO '\x80' /* identify pickle protocol */
344 int proto; member in struct:Picklerobject
346 /* bool, true if proto > 0 */
982 if (self->proto >= 2) {
1052 if (self->proto >= 2) {
1130 /* proto < 2: write the repr and newline. This is quadratic-time
3096 int proto = 0; local
5646 int proto = 0; local
5675 int proto = 0; local
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 75 #define PROTO '\x80' /* identify pickle protocol */
342 int proto; member in struct:Picklerobject
344 /* bool, true if proto > 0 */
1011 if (self->proto >= 2) {
1081 if (self->proto >= 2) {
1159 /* proto < 2: write the repr and newline. This is quadratic-time
3147 int proto = 0; local
5708 int proto = 0; local
5737 int proto = 0; local
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 68 PROTO = '\x80',
555 int proto; /* Pickle protocol number, >= 0 */ member in struct:PicklerObject
556 int bin; /* Boolean, true if proto > 0 */
557 int framing; /* True when framing is enabled, proto >= 4 */
608 int proto; /* Protocol of the pickle loaded. */ member in struct:UnpicklerObject
1011 self->proto = 0;
1036 long proto; local
1039 proto = DEFAULT_PROTOCOL;
1042 proto = PyLong_AsLong(protocol);
1043 if (proto < 0)
3917 PyObject *proto; local
    [all...]
  /external/guice/extensions/persist/lib/
db4o-6.4.14.8131-java5.jar 

Completed in 732 milliseconds