Home
last modified time | relevance | path

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

123456

/device/generic/goldfish-opengl/system/hals/
Dmapper3.cpp107 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 …]
Dallocator3.cpp267 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/
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
/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/google/contexthub/contexthubhal/
Dnanohubhal.cpp261 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/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/
DDdrMemoryController.h161 UINT32 raw; member
177 UINT32 raw; member
190 UINT32 raw; member
208 UINT32 raw; member
/device/google/contexthub/firmware/os/drivers/st_mag40/
Dst_mag40.c396 #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/google/cuttlefish/tests/wifi/
Druntests.sh8 -r print raw results
13 Run just the specified test, and show the raw output.
/device/google/cuttlefish/tests/ril/
Druntests.sh8 -r print raw results
13 Run just the specified test, and show the raw output.
/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/google/cuttlefish/host/frontend/vnc_server/
Dframe_buffer_watcher.cpp70 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/UefiCpuPkg/ResetVector/Vtf0/Bin/
DResetVector.inf30 RAW|ResetVector.ia32.raw|*
33 RAW|ResetVector.x64.raw|*
/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."

123456