/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/ |
D | gen5_iosf_sb_definitions.h | 54 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 …]
|
D | meminit.c | 116 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/ |
D | bufferedio.c | 195 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.c | 305 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.py | 188 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 …]
|
D | shlex.py | 96 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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | bufferedio.c | 195 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.c | 306 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/ |
D | test_sort.py | 9 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
|
D | test_io.py | 527 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 …]
|
D | test_binascii.py | 42 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/ |
D | Meta.py | 29 raw = self.__formalclass__.__getattr__(name) 36 if type(raw) != types.FunctionType: 37 return raw 38 return self.__methodwrapper__(raw, self)
|
D | Trace.py | 70 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/ |
D | DdrMemoryController.h | 161 UINT32 raw; member 177 UINT32 raw; member 190 UINT32 raw; member 208 UINT32 raw; member
|
/device/google/contexthub/firmware/os/drivers/st_mag40/ |
D | st_mag40.c | 395 #define DEC_INFO_BIAS(name, type, axis, inter, samples, rates, raw, scale, bias) \ argument 402 .rawType = raw, \ 406 #define DEC_INFO(name, type, axis, inter, samples, rates, raw, scale) \ argument 413 .rawType = raw, \ 555 uint8_t *raw = &xfer->txrxBuf[0]; in magTestHandling() local 557 mTask.dataNOST[0] += (*(int16_t *)&raw[0]); in magTestHandling() 558 mTask.dataNOST[1] += (*(int16_t *)&raw[2]); in magTestHandling() 559 mTask.dataNOST[2] += (*(int16_t *)&raw[4]); in magTestHandling() 584 uint8_t *raw = &xfer->txrxBuf[0]; in magTestHandling() local 586 mTask.dataST[0] += (*(int16_t *)&raw[0]); in magTestHandling() [all …]
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/ |
D | QNCSmmHelpers.c | 66 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/ |
D | scantools.py | 554 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/ |
D | ResetVector.inf | 30 RAW|ResetVector.ia32.raw|* 33 RAW|ResetVector.x64.raw|*
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiCrc32GuidedSectionExtractLib/ |
D | PeiCrc32GuidedSectionExtractLib.uni | 6 // 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/asus/fugu/libaudio/ |
D | AudioStreamIn.cpp | 453 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/Universal/Network/MnpDxe/ |
D | MnpDxe.uni | 5 // 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/ |
D | DxeCrc32GuidedSectionExtractLib.uni | 6 // 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/ |
D | DxeRsa2048Sha256GuidedSectionExtractLib.uni | 5 // 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/ |
D | PeiRsa2048Sha256GuidedSectionExtractLib.uni | 5 // 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/ |
D | reindent.py | 160 self.raw = f.readlines() 166 for line in self.raw] 243 return self.raw != self.after
|