| /device/google/sunfish/vibrator/drv2624/ |
| D | Hardware.h | 43 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 44 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 45 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 46 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 47 bool setState(bool value) override { return set(value, &mState); } in setState() 49 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 50 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 51 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 52 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 53 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
| /device/google/redfin/vibrator/drv2624/ |
| D | Hardware.h | 38 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 39 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 40 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 41 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 42 bool setState(bool value) override { return set(value, &mState); } in setState() 44 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 45 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 46 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 47 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 48 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
| /device/google/bramble/vibrator/drv2624/ |
| D | Hardware.h | 38 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 39 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 40 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 41 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 42 bool setState(bool value) override { return set(value, &mState); } in setState() 44 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 45 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 46 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 47 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 48 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
| /device/google/barbet/vibrator/drv2624/ |
| D | Hardware.h | 38 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 39 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 40 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 41 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 42 bool setState(bool value) override { return set(value, &mState); } in setState() 44 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 45 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 46 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 47 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 48 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
| /device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/ |
| D | core_cmInstr.h | 129 __attribute__((section(".rev16_text"))) __STATIC_INLINE __ASM uint32_t __REV16(uint32_t value) in __REV16() 144 __attribute__((section(".revsh_text"))) __STATIC_INLINE __ASM int32_t __REVSH(int32_t value) in __REVSH() 171 #define __BKPT(value) __breakpoint(value) argument 225 #define __STREXB(value, ptr) __strex(value, ptr) argument 237 #define __STREXH(value, ptr) __strex(value, ptr) argument 249 #define __STREXW(value, ptr) __strex(value, ptr) argument 300 __attribute__((section(".rrx_text"))) __STATIC_INLINE __ASM uint32_t __RRX(uint32_t value) in __RRX() 345 #define __STRBT(value, ptr) __strt(value, ptr) argument 355 #define __STRHT(value, ptr) __strt(value, ptr) argument 365 #define __STRT(value, ptr) __strt(value, ptr) argument [all …]
|
| /device/google/sunfish/vibrator/common/ |
| D | HardwareBase.h | 51 Record(const char *func, const T &value, const std::ios *stream) in Record() 105 bool HwApiBase::get(T *value, std::istream *stream) { in get() 119 bool HwApiBase::set(const T &value, std::ostream *stream) { in set() 133 bool HwApiBase::poll(const T &value, std::istream *stream) { in poll() 158 void HwApiBase::record(const char *func, const T &value, const std::ios *stream) { in record() 198 bool HwCalBase::getPersist(const char *key, T *value) { in getPersist()
|
| D | utils.h | 62 inline auto toUnderlying(const T value) { in toUnderlying() 67 inline Enable_If_Iterable<T, true> unpack(std::istream &stream, T *value) { in unpack() 74 inline Enable_If_Iterable<T, false> unpack(std::istream &stream, T *value) { in unpack()
|
| /device/linaro/bootloader/arm-trusted-firmware/drivers/arm/sp805/ |
| D | sp805.c | 13 static inline void sp805_write_wdog_load(uintptr_t base, unsigned long value) in sp805_write_wdog_load() 18 static inline void sp805_write_wdog_ctrl(uintptr_t base, unsigned long value) in sp805_write_wdog_ctrl() 23 static inline void sp805_write_wdog_lock(uintptr_t base, unsigned long value) in sp805_write_wdog_lock()
|
| /device/linaro/bootloader/arm-trusted-firmware/include/lib/ |
| D | mmio.h | 12 static inline void mmio_write_8(uintptr_t addr, uint8_t value) in mmio_write_8() 22 static inline void mmio_write_16(uintptr_t addr, uint16_t value) in mmio_write_16() 32 static inline void mmio_write_32(uintptr_t addr, uint32_t value) in mmio_write_32() 42 static inline void mmio_write_64(uintptr_t addr, uint64_t value) in mmio_write_64()
|
| /device/generic/car/common/vhaloverride/ |
| D | uxr.car.json | 6 "value": 50.0, number 13 "value": 8, number 20 "value": 0, number
|
| D | ev.car.json | 6 "value": [10], array 12 "value": [1, 5], array
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
| D | Python-ast.c | 392 PyObject *key, *value, *fields; in ast_type_init() local 551 PyObject *value; in ast2obj_list() local 1075 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return() 1103 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() 1124 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() 1404 Expr(expr_ty value, int lineno, int col_offset, PyArena *arena) in Expr() 1671 DictComp(expr_ty key, expr_ty value, asdl_seq * generators, int lineno, int in DictComp() 1719 Yield(expr_ty value, int lineno, int col_offset, PyArena *arena) in Yield() 1779 Repr(expr_ty value, int lineno, int col_offset, PyArena *arena) in Repr() 1836 Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int in Attribute() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
| D | Python-ast.c | 392 PyObject *key, *value, *fields; in ast_type_init() local 551 PyObject *value; in ast2obj_list() local 1092 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return() 1120 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() 1141 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() 1421 Expr(expr_ty value, int lineno, int col_offset, PyArena *arena) in Expr() 1688 DictComp(expr_ty key, expr_ty value, asdl_seq * generators, int lineno, int in DictComp() 1736 Yield(expr_ty value, int lineno, int col_offset, PyArena *arena) in Yield() 1796 Repr(expr_ty value, int lineno, int col_offset, PyArena *arena) in Repr() 1853 Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int in Attribute() [all …]
|
| /device/linaro/bootloader/arm-trusted-firmware/lib/compiler-rt/builtins/ |
| D | int_lib.h | 91 uint32_t __inline __builtin_ctz(uint32_t value) { in __builtin_ctz() 98 uint32_t __inline __builtin_clz(uint32_t value) { in __builtin_clz() 106 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() 113 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll()
|
| /device/generic/goldfish-opengl/android-emu/android/base/files/ |
| D | Stream.cpp | 23 void Stream::putByte(uint8_t value) { in putByte() 28 uint8_t value[1] = { 0 }; in getByte() local 33 void Stream::putBe16(uint16_t value) { in putBe16() 44 void Stream::putBe32(uint32_t value) { in putBe32() 62 void Stream::putBe64(uint64_t value) { in putBe64()
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
| D | parse.py | 19 def __init__(self, msg, type, value, context): argument 113 def addtoken(self, type, value, context): argument 161 def classify(self, type, value, context): argument 175 def shift(self, type, value, newstate, context): argument
|
| /device/google/sunfish/vibrator/drv2624/tests/ |
| D | test-hwapi.cpp | 91 void expectContent(const std::string &name, const T &value) { in expectContent() 97 void updateContent(const std::string &name, const T &value) { in updateContent() 102 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 266 int8_t value = std::rand(); in TEST_P() local 277 int8_t value = std::rand(); in TEST_P() local 299 uint8_t value = std::rand(); in TEST_P() local 310 uint8_t value = std::rand(); in TEST_P() local 331 uint32_t value = std::rand(); in TEST_P() local 342 uint32_t value = std::rand(); in TEST_P() local 368 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
| /device/google/bramble/vibrator/drv2624/tests/ |
| D | test-hwapi.cpp | 90 void expectContent(const std::string &name, const T &value) { in expectContent() 96 void updateContent(const std::string &name, const T &value) { in updateContent() 101 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 265 int8_t value = std::rand(); in TEST_P() local 276 int8_t value = std::rand(); in TEST_P() local 298 uint8_t value = std::rand(); in TEST_P() local 309 uint8_t value = std::rand(); in TEST_P() local 330 uint32_t value = std::rand(); in TEST_P() local 341 uint32_t value = std::rand(); in TEST_P() local 367 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
| /device/google/barbet/vibrator/drv2624/tests/ |
| D | test-hwapi.cpp | 90 void expectContent(const std::string &name, const T &value) { in expectContent() 96 void updateContent(const std::string &name, const T &value) { in updateContent() 101 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 265 int8_t value = std::rand(); in TEST_P() local 276 int8_t value = std::rand(); in TEST_P() local 298 uint8_t value = std::rand(); in TEST_P() local 309 uint8_t value = std::rand(); in TEST_P() local 330 uint32_t value = std::rand(); in TEST_P() local 341 uint32_t value = std::rand(); in TEST_P() local 367 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
| /device/google/redfin/vibrator/drv2624/tests/ |
| D | test-hwapi.cpp | 90 void expectContent(const std::string &name, const T &value) { in expectContent() 96 void updateContent(const std::string &name, const T &value) { in updateContent() 101 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 265 int8_t value = std::rand(); in TEST_P() local 276 int8_t value = std::rand(); in TEST_P() local 298 uint8_t value = std::rand(); in TEST_P() local 309 uint8_t value = std::rand(); in TEST_P() local 330 uint32_t value = std::rand(); in TEST_P() local 341 uint32_t value = std::rand(); in TEST_P() local 367 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| D | traceback.py | 110 def print_exception(etype, value, tb, limit=None, file=None): argument 130 def format_exception(etype, value, tb, limit = None): argument 147 def format_exception_only(etype, value): argument 202 def _format_final_exc_line(etype, value): argument 211 def _some_str(value): argument
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
| D | traceback.py | 110 def print_exception(etype, value, tb, limit=None, file=None): argument 130 def format_exception(etype, value, tb, limit = None): argument 147 def format_exception_only(etype, value): argument 203 def _format_final_exc_line(etype, value): argument 212 def _some_str(value): argument
|
| /device/linaro/bootloader/edk2/IntelFspPkg/Tools/ |
| D | PatchFv.py | 82 def patchDataInFile (binfile, offset, value, len=1): argument 708 def getContent(self, value): argument 722 def toAddress(self, value): argument 734 def toOffset(self, value): argument 746 def getGuidOff(self, value): argument 762 def getSymbols(self, value): argument
|
| /device/google/cuttlefish/guest/hals/camera/ |
| D | CameraConfiguration.cpp | 100 bool ValueToCameraOrientation(const std::string& value, in ValueToCameraOrientation() 114 bool ValueToCameraHalVersion(const std::string& value, in ValueToCameraHalVersion() 189 bool ConfigureCameras(const Json::Value& value, in ConfigureCameras()
|
| /device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/ |
| D | PatchFv.py | 82 def patchDataInFile (binfile, offset, value, len=1): argument 733 def getContent(self, value): argument 743 def toAddress(self, value): argument 755 def toOffset(self, value): argument 776 def getGuidOff(self, value): argument 799 def getSymbols(self, value): argument
|