/device/generic/goldfish-opengl/system/hals/ |
D | mapper3.cpp | 107 Return<Error3> freeBuffer(void* raw) { in freeBuffer() argument 108 if (!raw) { in freeBuffer() 111 cb_handle_30_t* cb = cb_handle_30_t::from(raw); in freeBuffer() 132 Return<void> lock(void* raw, in lock() argument 141 const Error3 e = lockImpl(raw, cpuUsage, accessRegion, acquireFence, in lock() 151 Return<void> lockYCbCr(void* raw, in lockYCbCr() argument 157 const Error3 e = lockYCbCrImpl(raw, cpuUsage, accessRegion, acquireFence, in lockYCbCr() 167 Return<void> unlock(void* raw, unlock_cb hidl_cb) { in unlock() argument 168 hidl_cb(unlockImpl(raw), {}); in unlock() 175 hidl_vec<uint32_t> raw; in createDescriptor() local [all …]
|
D | allocator3.cpp | 267 static bool decodeBufferDescriptorInfo(const hidl_vec<uint32_t>& raw, in decodeBufferDescriptorInfo() argument 269 if (raw.size() == 5) { in decodeBufferDescriptorInfo() 270 d->width = raw[0]; in decodeBufferDescriptorInfo() 271 d->height = raw[1]; in decodeBufferDescriptorInfo() 272 d->layerCount = raw[2]; in decodeBufferDescriptorInfo() 273 d->format = static_cast<PixelFormat>(raw[3]); in decodeBufferDescriptorInfo() 274 d->usage = raw[4]; in decodeBufferDescriptorInfo()
|
/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/contexthubhal/ |
D | nanohubhal.cpp | 261 if (ret < (int)sizeof(msg.raw.hdr)) { in runDeviceRx() 266 uint32_t len = msg.raw.hdr.len; in runDeviceRx() 274 if (ret == (int)(sizeof(msg.raw.hdr) + len)) { in runDeviceRx() 275 ret = SystemComm::handleRx(&msg.raw); in runDeviceRx() 277 hub_app_name_t app_name = { .id = msg.raw.hdr.appId }; in runDeviceRx() 279 … dumpBuffer("(RAW) DEV -> APP", app_name, msg.raw.hdr.eventId, 0, &msg.raw.data[0], len); in runDeviceRx() 281 …doSendToApp(HubMessage(&app_name, msg.raw.hdr.eventId, ENDPOINT_BROADCAST, &msg.raw.data[0], len)); in runDeviceRx() 294 …ALOGE("Expected (%zu|%zu) bytes, read %d bytes", sizeof(msg.raw.hdr) + len, sizeof(msg.chre.hdr) +… in runDeviceRx()
|
/device/google/cuttlefish/tests/wifi/ |
D | runtests.sh | 8 -r print raw results 13 Run just the specified test, and show the raw output.
|
/device/google/cuttlefish/tests/ril/ |
D | runtests.sh | 8 -r print raw results 13 Run just the specified test, and show the raw output.
|
/device/google/contexthub/firmware/os/drivers/st_mag40/ |
D | st_mag40.c | 396 #define DEC_INFO_BIAS(name, type, axis, inter, samples, rates, raw, scale, bias) \ argument 403 .rawType = raw, \ 407 #define DEC_INFO(name, type, axis, inter, samples, rates, raw, scale) \ argument 414 .rawType = raw, \ 577 uint8_t *raw = &xfer->txrxBuf[0]; in magTestHandling() local 579 mTask.dataNOST[0] += (*(int16_t *)&raw[0]); in magTestHandling() 580 mTask.dataNOST[1] += (*(int16_t *)&raw[2]); in magTestHandling() 581 mTask.dataNOST[2] += (*(int16_t *)&raw[4]); in magTestHandling() 606 uint8_t *raw = &xfer->txrxBuf[0]; in magTestHandling() local 608 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/google/cuttlefish/host/frontend/vnc_server/ |
D | frame_buffer_watcher.cpp | 70 const auto& raw = stripe.raw_data; in Rotated() local 71 Message rotated(raw.size(), 0xAA); in Rotated() 76 CHECK(from < raw.size()); in Rotated() 78 std::memcpy(&rotated[to], &raw[from], ScreenConnector::BytesPerPixel()); in Rotated()
|
/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."
|