Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 25 of 102) sorted by relevance

12345

/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
Dgen5_iosf_sb_definitions.h54 uint32_t raw; member
76 uint32_t raw; member
101 uint32_t raw; member
122 uint32_t raw; member
136 uint32_t raw; member
159 uint32_t raw; member
179 uint32_t raw; member
202 uint32_t raw; member
223 uint32_t raw; member
241 uint32_t raw; member
[all …]
Dmeminit.c116 Dco.raw = isbR32m(MCU, DCO); in select_memory_manager()
118 isbW32m(MCU, DCO, Dco.raw); in select_memory_manager()
131 Dco.raw = isbR32m(MCU, DCO); in select_hte()
133 isbW32m(MCU, DCO, Dco.raw); in select_hte()
183 Dpmc0.raw = isbR32m(MCU, DPMC0); in prog_decode_before_jedec()
188 isbW32m(MCU, DPMC0, Dpmc0.raw); in prog_decode_before_jedec()
191 Dsch.raw = isbR32m(MCU, DSCH); in prog_decode_before_jedec()
194 isbW32m(MCU, DSCH, Dsch.raw); in prog_decode_before_jedec()
197 Drfc.raw = isbR32m(MCU, DRFC); in prog_decode_before_jedec()
199 isbW32m(MCU, DRFC, Drfc.raw); in prog_decode_before_jedec()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Dbufferedio.c195 PyObject *raw; member
325 ? _PyFileIO_closed(self->raw) \
374 Py_CLEAR(self->raw); in buffered_dealloc()
392 Py_VISIT(self->raw); in buffered_traverse()
403 Py_CLEAR(self->raw); in buffered_clear()
420 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush()
429 res = PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed()
441 return PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed_get()
472 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
484 PyObject *raw, *res; in buffered_detach() local
[all …]
D_iomodule.c305 PyObject *raw, *modeobj = NULL, *buffer = NULL, *wrapper = NULL; in io_open() local
414 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type, in io_open()
416 if (raw == NULL) in io_open()
425 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL); in io_open()
447 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL); in io_open()
476 return raw; in io_open()
495 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering); in io_open()
497 Py_CLEAR(raw); in io_open()
524 Py_XDECREF(raw); in io_open()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
D_pyio.py188 raw = FileIO(file,
195 if buffering == 1 or buffering < 0 and raw.isatty():
201 bs = os.fstat(raw.fileno()).st_blksize
211 return raw
214 buffer = BufferedRandom(raw, buffering)
216 buffer = BufferedWriter(raw, buffering)
218 buffer = BufferedReader(raw, buffering)
685 def __init__(self, raw): argument
686 self._raw = raw
691 new_position = self.raw.seek(pos, whence)
[all …]
Dshlex.py96 raw = self.read_token()
99 while raw == self.source:
104 raw = self.get_token()
106 while raw == self.eof:
111 raw = self.get_token()
114 if raw != self.eof:
115 print "shlex: token=" + repr(raw)
118 return raw
Duuid.py446 return UUID(bytes=_buffer.raw).node
452 return UUID(bytes=_buffer.raw).node
501 return UUID(bytes=_buffer.raw)
538 return UUID(bytes=_buffer.raw)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Dbufferedio.c195 PyObject *raw; member
325 ? _PyFileIO_closed(self->raw) \
374 Py_CLEAR(self->raw); in buffered_dealloc()
403 Py_VISIT(self->raw); in buffered_traverse()
414 Py_CLEAR(self->raw); in buffered_clear()
431 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush()
440 res = PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed()
452 return PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed_get()
483 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
500 PyObject *raw, *res; in buffered_detach() local
[all …]
D_iomodule.c306 PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL; in io_open() local
415 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type, in io_open()
417 if (raw == NULL) in io_open()
419 result = raw; in io_open()
427 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL); in io_open()
449 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL); in io_open()
497 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering); in io_open()
502 Py_DECREF(raw); in io_open()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_sort.py9 def check(tag, expected, raw, compare=None): argument
15 orig = raw[:] # save input in case of error
17 raw.sort(compare)
19 raw.sort()
21 if len(expected) != len(raw):
23 print "length mismatch;", len(expected), len(raw)
26 print raw
31 maybe = raw[i]
37 print raw
Dtest_io.py527 self.assertEqual(f.buffer.raw.closefd, True)
529 self.assertEqual(file.buffer.raw.closefd, False)
600 raw = self.MockRawIO()
601 buf = self.tp(raw)
602 self.assertIs(buf.detach(), raw)
679 raw = self.MockRawIO()
680 b = self.tp(raw)
683 raw.name = "dummy"
685 raw.name = b"dummy"
689 raw = self.MockRawIO()
[all …]
Dtest_binascii.py42 raw = self.rawdata[:MAX_ALL]
47 a = b2a(self.type2test(raw))
54 self.assertEqual(res, raw, "{}/{} conversion: "
55 "{!r} != {!r}".format(fb, fa, res, raw))
59 self.assertIsInstance(binascii.crc_hqx(raw, 0), int)
60 self.assertIsInstance(binascii.crc32(raw), int)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
DMeta.py29 raw = self.__formalclass__.__getattr__(name)
36 if type(raw) != types.FunctionType:
37 return raw
38 return self.__methodwrapper__(raw, self)
DTrace.py70 raw = self.__class.__getattr__(name)
73 if type(raw) != types.FunctionType:
74 return raw
78 return NotTracingWrapper(fullname, raw, self)
80 return TracingWrapper(fullname, raw, self)
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/
DDdrMemoryController.h161 UINT32 raw; member
177 UINT32 raw; member
190 UINT32 raw; member
208 UINT32 raw; member
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/
DQNCSmmHelpers.c66 Src1->En[loopvar].Reg.Data.raw != Src2->En[loopvar].Reg.Data.raw in CompareEnables()
113 Src1->Sts[loopvar].Reg.Data.raw != Src2->Sts[loopvar].Reg.Data.raw in CompareStatuses()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
Dscantools.py554 raw = self.line
555 while not self.tail.search(raw):
570 raw = raw + line
572 self.report("* WHOLE LINE: %r" % (raw,))
573 self.processrawspec(raw)
574 return raw
576 def processrawspec(self, raw): argument
577 match = self.whole.search(raw)
579 self.report("Bad raw spec: %r", raw)
581 match = self.type.search(raw)
[all …]
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Bin/
DResetVector.inf30 RAW|ResetVector.ia32.raw|*
33 RAW|ResetVector.x64.raw|*
/device/asus/fugu/libaudio/
DAudioStreamIn.cpp453 buf.raw = NULL; in readFrames_l()
457 if (buf.raw != NULL) { in readFrames_l()
459 buf.raw, in readFrames_l()
507 buffer->raw = NULL; in getNextBuffer()
517 buffer->raw = NULL; in getNextBuffer()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiCrc32GuidedSectionExtractLib/
DPeiCrc32GuidedSectionExtractLib.uni6 // that parses CRC32 encapsulation section and extracts raw data.
22 …gister CRC32 guided section handler that parses CRC32 encapsulation section and extracts raw data."
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
DMnpDxe.uni5 // to provide raw asynchronous network I/O services. It also produces EFI VLAN Protocol
23 …s EFI Managed Network Protocol upon EFI Simple Network Protocol to provide raw asynchronous networ…
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/
DDxeCrc32GuidedSectionExtractLib.uni6 // that parses CRC32 encapsulation section and extracts raw data.
24 …uided section handler that parses CRC32 encapsulation section and extracts raw data. It uses UEFI …
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
DDxeRsa2048Sha256GuidedSectionExtractLib.uni5 // that parses RSA 2048 SHA 256 encapsulation section and extracts raw data.
23 …tion handler that parses RSA2048 SHA256 encapsulation section and extracts raw data. It uses the B…
/device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
DPeiRsa2048Sha256GuidedSectionExtractLib.uni5 // that parses RSA 2048 SHA 256 encapsulation section and extracts raw data.
23 …tion handler that parses RSA2048 SHA256 encapsulation section and extracts raw data. It uses the B…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dreindent.py160 self.raw = f.readlines()
166 for line in self.raw]
243 return self.raw != self.after

12345