Home
last modified time | relevance | path

Searched refs:old (Results 1 - 25 of 51) sorted by relevance

123

/device/soc/hisilicon/common/platform/hieth-sf/src/
H A Deth_mac.c26 int32_t old; in SetLinkStat() local
28 old = HiethReadlBits(ld, UD_REG_NAME(MAC_PORTSET), BITS_MACSTAT); in SetLinkStat()
30 return old; in SetLinkStat()
35 int32_t old; in SetNegMode() local
37 old = HiethReadlBits(ld, UD_REG_NAME(MAC_PORTSEL), BITS_NEGMODE); in SetNegMode()
39 return old; in SetNegMode()
59 int32_t old; in HiethSetMacLeadcodeCntLimit() local
62 old = HiethReadlBits(ld, UD_REG_NAME(MAC_TX_IPGCTRL), BITS_PRE_CNT_LIMIT); in HiethSetMacLeadcodeCntLimit()
65 return old; in HiethSetMacLeadcodeCntLimit()
70 int32_t old; in HiethSetMacTransIntervalBits() local
92 int32_t old; HiethSetMacFcInterval() local
103 int32_t old; HiethSetNegMode() local
113 int32_t old; HiethGetNegmode() local
123 int32_t old; HiethSetMiiMode() local
[all...]
H A Dctrl.c148 unsigned long old; in IrqEnable() local
150 old = HiethRead(ld, GLB_RW_IRQ_ENA); in IrqEnable()
151 HiethWrite(ld, old | (unsigned long)irqs, GLB_RW_IRQ_ENA); in IrqEnable()
152 old = HiethRead(ld, GLB_RW_IRQ_ENA); in IrqEnable()
153 return old; in IrqEnable()
158 unsigned long old; in IrqDisable() local
160 old = HiethRead(ld, GLB_RW_IRQ_ENA); in IrqDisable()
161 HiethWrite(ld, old & (~(unsigned long)irqs), GLB_RW_IRQ_ENA); in IrqDisable()
162 return old; in IrqDisable()
228 int32_t old; in HiethIrqEnable() local
238 int32_t old; HiethIrqDisable() local
264 int32_t old; HiethSetEndianMode() local
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/
H A Dmali_kbase_context.h57 int old, new; in kbase_ctx_flag_clear() local
60 old = atomic_read(&kctx->flags); in kbase_ctx_flag_clear()
61 new = old & ~flag; in kbase_ctx_flag_clear()
62 } while (atomic_cmpxchg(&kctx->flags, old, new) != old); in kbase_ctx_flag_clear()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_context.h62 int old, new; in kbase_ctx_flag_clear() local
65 old = atomic_read(&kctx->flags); in kbase_ctx_flag_clear()
66 new = old & ~flag; in kbase_ctx_flag_clear()
68 } while (atomic_cmpxchg(&kctx->flags, old, new) != old); in kbase_ctx_flag_clear()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/context/
H A Dmali_kbase_context.h125 int old, new; in kbase_ctx_flag_clear() local
128 old = atomic_read(&kctx->flags); in kbase_ctx_flag_clear()
129 new = old & ~flag; in kbase_ctx_flag_clear()
130 } while (atomic_cmpxchg(&kctx->flags, old, new) != old); in kbase_ctx_flag_clear()
/applications/standard/contacts_data/jstest/
H A DPerformance_test.js65 let old = new Date();
77 let usedTime = now - old;
106 let old = new Date();
109 let usedTime = now - old;
139 let old = new Date();
142 let usedTime = now - old;
171 let old = new Date();
174 let usedTime = now - old;
222 let old = new Date();
234 let usedTime = now - old;
[all...]
/device/soc/rockchip/rk3588/kernel/arch/arm64/boot/
H A Dinstall.sh52 mv $4/$base-$1 $4/$base-$1.old
58 mv $4/System.map-$1 $4/System.map-$1.old
/device/soc/rockchip/rk3588/kernel/include/trace/hooks/
H A Dcreds.h29 TP_PROTO(const struct task_struct *task, const struct cred *old),
30 TP_ARGS(task, old));
H A Davc.h24 TP_PROTO(const struct avc_node *old, const struct avc_node *new),
25 TP_ARGS(old, new));
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/
H A Doal_util.c153 WIFI_ROM_TEXT hi_s8 wlan_rssi_lpf(hi_s8 old, hi_s8 new) in wlan_rssi_lpf() argument
161 return old; in wlan_rssi_lpf()
165 if (old == WLAN_RSSI_DUMMY_MARKER) { in wlan_rssi_lpf()
170 oldval = (hi_u8)oal_abs(old); in wlan_rssi_lpf()
H A Doal_atomic.h437 oal_bitops old = *p; in oal_bit_atomic_test_and_set()
438 *p = old | mask; in oal_bit_atomic_test_and_set()
441 return ((old & mask) != 0); in oal_bit_atomic_test_and_set()
455 oal_bitops old = *p; in oal_bit_atomic_test_and_clear()
456 *p = old & ~mask; in oal_bit_atomic_test_and_clear()
459 return (old & mask) != 0; in oal_bit_atomic_test_and_clear()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/include/
H A Dosal_list.h128 * list_replace - replace old entry by new one
129 * @old : the element to be replaced
132 * If @old was empty, it will be overwritten.
134 static inline void osal_list_replace(struct osal_list_head *old, in osal_list_replace() argument
137 new->next = old->next; in osal_list_replace()
139 new->prev = old->prev; in osal_list_replace()
143 static inline void osal_list_replace_init(struct osal_list_head *old, in osal_list_replace_init() argument
146 osal_list_replace(old, new); in osal_list_replace_init()
147 OSAL_INIT_LIST_HEAD(old); in osal_list_replace_init()
691 static inline void osal_hlist_move_list(struct osal_hlist_head *old, in osal_hlist_move_list() argument
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/
H A Dosal_list.h125 * list_replace - replace old entry by new one
126 * @old : the element to be replaced
129 * If @old was empty, it will be overwritten.
131 static inline void osal_list_replace(struct osal_list_head *old, in osal_list_replace() argument
134 new->next = old->next; in osal_list_replace()
136 new->prev = old->prev; in osal_list_replace()
140 static inline void osal_list_replace_init(struct osal_list_head *old, in osal_list_replace_init() argument
143 osal_list_replace(old, new); in osal_list_replace_init()
144 OSAL_INIT_LIST_HEAD(old); in osal_list_replace_init()
688 static inline void osal_hlist_move_list(struct osal_hlist_head *old, in osal_hlist_move_list() argument
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/
H A Dosal_list.h124 * list_replace - replace old entry by new one
125 * @old : the element to be replaced
128 * If @old was empty, it will be overwritten.
130 static inline void osal_list_replace(struct osal_list_head *old, in osal_list_replace() argument
133 new->next = old->next; in osal_list_replace()
135 new->prev = old->prev; in osal_list_replace()
139 static inline void osal_list_replace_init(struct osal_list_head *old, in osal_list_replace_init() argument
142 osal_list_replace(old, new); in osal_list_replace_init()
143 OSAL_INIT_LIST_HEAD(old); in osal_list_replace_init()
687 static inline void osal_hlist_move_list(struct osal_hlist_head *old, in osal_hlist_move_list() argument
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/include/
H A Dosal_list.h127 * list_replace - replace old entry by new one
128 * @old : the element to be replaced
131 * If @old was empty, it will be overwritten.
133 static inline void osal_list_replace(struct osal_list_head *old, in osal_list_replace() argument
136 new->next = old->next; in osal_list_replace()
138 new->prev = old->prev; in osal_list_replace()
142 static inline void osal_list_replace_init(struct osal_list_head *old, in osal_list_replace_init() argument
145 osal_list_replace(old, new); in osal_list_replace_init()
146 OSAL_INIT_LIST_HEAD(old); in osal_list_replace_init()
686 static inline void osal_hlist_move_list(struct osal_hlist_head *old, in osal_hlist_move_list() argument
[all...]
/base/request/request/test/unittest/cpp_test/fwkTest/src/
H A Drunning_task_count_test.cpp145 int old = FwkRunningTaskCountManager::GetInstance()->GetCount(); in HWTEST_F() local
150 FwkRunningTaskCountManager::GetInstance()->SetCount(old); in HWTEST_F()
152 EXPECT_EQ(count, old); in HWTEST_F()
H A Druncount_notify_stub_test.cpp87 int old = FwkRunningTaskCountManager::GetInstance()->GetCount(); in HWTEST_F() local
93 FwkRunningTaskCountManager::GetInstance()->SetCount(old); in HWTEST_F()
95 EXPECT_EQ(count, old); in HWTEST_F()
/device/soc/hisilicon/common/hal/middleware/ffmpeg_adapt/
H A Dbuild_ffmpeg.sh20 FFMPEG_ORIGN=$ROOT_DIR/third_party/ffmpeg/old-version/ffmpeg-4.4.1.tar.gz
/device/soc/rockchip/common/sdk_linux/drivers/tty/serial/8250/
H A D8250_dw.c331 static void dw8250_do_pm(struct uart_port *port, unsigned int state, unsigned int old) in dw8250_do_pm() argument
337 serial8250_do_pm(port, state, old); in dw8250_do_pm()
344 static void dw8250_set_termios(struct uart_port *p, struct ktermios *termios, struct ktermios *old) in dw8250_set_termios() argument
412 serial8250_do_set_termios(p, termios, old); in dw8250_set_termios()
/device/soc/rockchip/common/hardware/mpp/include/
H A Dmpp_hash.h150 static inline void hlist_move_list(struct hlist_head *old, struct hlist_head *_new) in hlist_move_list() argument
152 _new->first = old->first; in hlist_move_list()
156 old->first = NULL; in hlist_move_list()
/device/soc/rockchip/rk3399/hardware/mpp/include/
H A Dmpp_hash.h149 static inline void hlist_move_list(struct hlist_head *old, in hlist_move_list() argument
152 _new->first = old->first; in hlist_move_list()
156 old->first = NULL; in hlist_move_list()
/device/soc/rockchip/rk3568/hardware/mpp/include/
H A Dmpp_hash.h149 static inline void hlist_move_list(struct hlist_head *old, in hlist_move_list() argument
152 _new->first = old->first; in hlist_move_list()
156 old->first = NULL; in hlist_move_list()
/device/soc/rockchip/rk3588/hardware/mpp/include/
H A Dmpp_hash.h149 static inline void hlist_move_list(struct hlist_head *old, in hlist_move_list() argument
152 _new->first = old->first; in hlist_move_list()
155 old->first = NULL; in hlist_move_list()
/applications/standard/app_samples/code/BasicFeature/DataManagement/UDMF/UDMFDemo/
H A Dhvigorw.bat24 @rem set NODE_OPTS="--max-old-space-size=4096"
/applications/standard/app_samples/code/BasicFeature/DataManagement/pasteboard/
H A Dhvigorw.bat24 @rem set NODE_OPTS="--max-old-space-size=4096"

Completed in 22 milliseconds

123