| /OK3568_Linux_fs/kernel/drivers/bcma/ |
| H A D | driver_chipcommon.c | 18 static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, in bcma_cc_write32_masked() argument 22 value |= bcma_cc_read32(cc, offset) & ~mask; in bcma_cc_write32_masked() 23 bcma_cc_write32(cc, offset, value); in bcma_cc_write32_masked() 28 u32 bcma_chipco_get_alp_clock(struct bcma_drv_cc *cc) in bcma_chipco_get_alp_clock() argument 30 if (cc->capabilities & BCMA_CC_CAP_PMU) in bcma_chipco_get_alp_clock() 31 return bcma_pmu_get_alp_clock(cc); in bcma_chipco_get_alp_clock() 37 static bool bcma_core_cc_has_pmu_watchdog(struct bcma_drv_cc *cc) in bcma_core_cc_has_pmu_watchdog() argument 39 struct bcma_bus *bus = cc->core->bus; in bcma_core_cc_has_pmu_watchdog() 41 if (cc->capabilities & BCMA_CC_CAP_PMU) { in bcma_core_cc_has_pmu_watchdog() 56 static u32 bcma_chipco_watchdog_get_max_timer(struct bcma_drv_cc *cc) in bcma_chipco_watchdog_get_max_timer() argument [all …]
|
| H A D | driver_chipcommon_pmu.c | 16 u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset) in bcma_chipco_pll_read() argument 18 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_read() 19 bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_ADDR); in bcma_chipco_pll_read() 20 return bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_DATA); in bcma_chipco_pll_read() 24 void bcma_chipco_pll_write(struct bcma_drv_cc *cc, u32 offset, u32 value) in bcma_chipco_pll_write() argument 26 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_write() 27 bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_ADDR); in bcma_chipco_pll_write() 28 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_DATA, value); in bcma_chipco_pll_write() 32 void bcma_chipco_pll_maskset(struct bcma_drv_cc *cc, u32 offset, u32 mask, in bcma_chipco_pll_maskset() argument 35 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_maskset() [all …]
|
| H A D | driver_gpio.c | 22 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_get_value() local 24 return !!bcma_chipco_gpio_in(cc, 1 << gpio); in bcma_gpio_get_value() 30 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_set_value() local 32 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0); in bcma_gpio_set_value() 37 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_direction_input() local 39 bcma_chipco_gpio_outen(cc, 1 << gpio, 0); in bcma_gpio_direction_input() 46 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_direction_output() local 48 bcma_chipco_gpio_outen(cc, 1 << gpio, 1 << gpio); in bcma_gpio_direction_output() 49 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0); in bcma_gpio_direction_output() 55 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_request() local [all …]
|
| /OK3568_Linux_fs/kernel/drivers/ssb/ |
| H A D | driver_chipcommon.c | 32 static inline u32 chipco_write32_masked(struct ssb_chipcommon *cc, u16 offset, in chipco_write32_masked() argument 36 value |= chipco_read32(cc, offset) & ~mask; in chipco_write32_masked() 37 chipco_write32(cc, offset, value); in chipco_write32_masked() 42 void ssb_chipco_set_clockmode(struct ssb_chipcommon *cc, in ssb_chipco_set_clockmode() argument 45 struct ssb_device *ccdev = cc->dev; in ssb_chipco_set_clockmode() 57 if (cc->capabilities & SSB_CHIPCO_CAP_PMU) in ssb_chipco_set_clockmode() 69 if (!(cc->capabilities & SSB_CHIPCO_CAP_PCTL)) in ssb_chipco_set_clockmode() 74 tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL); in ssb_chipco_set_clockmode() 76 chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp); in ssb_chipco_set_clockmode() 81 tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL); in ssb_chipco_set_clockmode() [all …]
|
| H A D | driver_chipcommon_pmu.c | 22 static u32 ssb_chipco_pll_read(struct ssb_chipcommon *cc, u32 offset) in ssb_chipco_pll_read() argument 24 chipco_write32(cc, SSB_CHIPCO_PLLCTL_ADDR, offset); in ssb_chipco_pll_read() 25 return chipco_read32(cc, SSB_CHIPCO_PLLCTL_DATA); in ssb_chipco_pll_read() 28 static void ssb_chipco_pll_write(struct ssb_chipcommon *cc, in ssb_chipco_pll_write() argument 31 chipco_write32(cc, SSB_CHIPCO_PLLCTL_ADDR, offset); in ssb_chipco_pll_write() 32 chipco_write32(cc, SSB_CHIPCO_PLLCTL_DATA, value); in ssb_chipco_pll_write() 35 static void ssb_chipco_regctl_maskset(struct ssb_chipcommon *cc, in ssb_chipco_regctl_maskset() argument 40 chipco_read32(cc, SSB_CHIPCO_REGCTL_ADDR); in ssb_chipco_regctl_maskset() 41 chipco_write32(cc, SSB_CHIPCO_REGCTL_ADDR, offset); in ssb_chipco_regctl_maskset() 42 chipco_read32(cc, SSB_CHIPCO_REGCTL_ADDR); in ssb_chipco_regctl_maskset() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-crypt.c | 67 struct crypt_config *cc; member 93 int (*ctr)(struct crypt_config *cc, struct dm_target *ti, 95 void (*dtr)(struct crypt_config *cc); 96 int (*init)(struct crypt_config *cc); 97 int (*wipe)(struct crypt_config *cc); 98 int (*generator)(struct crypt_config *cc, u8 *iv, 100 int (*post)(struct crypt_config *cc, u8 *iv, 235 static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc, 238 static bool crypt_integrity_aead(struct crypt_config *cc); 243 static struct crypto_skcipher *any_tfm(struct crypt_config *cc) in any_tfm() argument [all …]
|
| /OK3568_Linux_fs/kernel/arch/s390/pci/ |
| H A D | pci_insn.c | 20 static inline void zpci_err_insn(u8 cc, u8 status, u64 req, u64 offset) in zpci_err_insn() argument 25 u8 cc; in zpci_err_insn() member 27 } __packed data = {req, offset, cc, status}; in zpci_err_insn() 35 u8 cc; in __mpcifc() local 41 : [cc] "=d" (cc), [req] "+d" (req), [fib] "+Q" (*fib) in __mpcifc() 44 return cc; in __mpcifc() 49 u8 cc; in zpci_mod_fc() local 52 cc = __mpcifc(req, fib, status); in zpci_mod_fc() 53 if (cc == 2) in zpci_mod_fc() 55 } while (cc == 2); in zpci_mod_fc() [all …]
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | compaction.c | 222 static inline bool isolation_suitable(struct compact_control *cc, in isolation_suitable() argument 225 if (cc->ignore_skip_hint) in isolation_suitable() 405 static bool test_and_set_skip(struct compact_control *cc, struct page *page, in test_and_set_skip() argument 411 if (cc->ignore_skip_hint) in test_and_set_skip() 418 if (!skip && !cc->no_set_skip_hint) in test_and_set_skip() 424 static void update_cached_migrate(struct compact_control *cc, unsigned long pfn) in update_cached_migrate() argument 426 struct zone *zone = cc->zone; in update_cached_migrate() 431 if (cc->no_set_skip_hint) in update_cached_migrate() 436 if (cc->mode != MIGRATE_ASYNC && in update_cached_migrate() 445 static void update_pageblock_skip(struct compact_control *cc, in update_pageblock_skip() argument [all …]
|
| /OK3568_Linux_fs/kernel/fs/f2fs/ |
| H A D | compress.c | 50 int (*init_compress_ctx)(struct compress_ctx *cc); 51 void (*destroy_compress_ctx)(struct compress_ctx *cc); 52 int (*compress_pages)(struct compress_ctx *cc); 58 static unsigned int offset_in_cluster(struct compress_ctx *cc, pgoff_t index) in offset_in_cluster() argument 60 return index & (cc->cluster_size - 1); in offset_in_cluster() 63 static pgoff_t cluster_idx(struct compress_ctx *cc, pgoff_t index) in cluster_idx() argument 65 return index >> cc->log_cluster_size; in cluster_idx() 68 static pgoff_t start_idx_of_cluster(struct compress_ctx *cc) in start_idx_of_cluster() argument 70 return cc->cluster_idx << cc->log_cluster_size; in start_idx_of_cluster() 97 static void f2fs_drop_rpages(struct compress_ctx *cc, int len, bool unlock) in f2fs_drop_rpages() argument [all …]
|
| /OK3568_Linux_fs/buildroot/package/gnuradio/ |
| H A D | 0002-boost_qualify_placeholders_with_their_full_namespace.patch | 14 gnuradio-runtime/lib/block.cc | 3 ++- 15 gr-blocks/lib/copy_impl.cc | 4 ++- 16 gr-blocks/lib/message_debug_impl.cc | 13 +++++++--- 17 gr-blocks/lib/message_strobe_impl.cc | 5 ++-- 18 gr-blocks/lib/message_strobe_random_impl.cc | 5 ++-- 19 gr-blocks/lib/multiply_matrix_impl.cc | 11 +++++--- 20 gr-blocks/lib/mute_impl.cc | 5 ++-- 21 gr-blocks/lib/nop_impl.cc | 5 ++-- 22 gr-blocks/lib/pdu_filter_impl.cc | 5 ++-- 23 gr-blocks/lib/pdu_remove_impl.cc | 5 ++-- [all …]
|
| /OK3568_Linux_fs/kernel/drivers/s390/cio/ |
| H A D | trace.h | 25 TP_PROTO(struct subchannel_id schid, struct schib *schib, int cc), 26 TP_ARGS(schid, schib, cc), 44 __field(int, cc) 63 __entry->cc = cc; 68 __entry->cssid, __entry->ssid, __entry->schno, __entry->cc, 85 TP_PROTO(struct subchannel_id schid, struct schib *schib, int cc), 86 TP_ARGS(schid, schib, cc) 96 TP_PROTO(struct subchannel_id schid, struct schib *schib, int cc), 97 TP_ARGS(schid, schib, cc) 107 TP_PROTO(struct subchannel_id schid, struct irb *irb, int cc), [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/bcm47xxnflash/ |
| H A D | ops_bcm4706.c | 43 static int bcm47xxnflash_ops_bcm4706_ctl_cmd(struct bcma_drv_cc *cc, u32 code) in bcm47xxnflash_ops_bcm4706_ctl_cmd() argument 47 bcma_cc_write32(cc, BCMA_CC_NFLASH_CTL, NCTL_START | code); in bcm47xxnflash_ops_bcm4706_ctl_cmd() 49 if (!(bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_START)) { in bcm47xxnflash_ops_bcm4706_ctl_cmd() 61 static int bcm47xxnflash_ops_bcm4706_poll(struct bcma_drv_cc *cc) in bcm47xxnflash_ops_bcm4706_poll() argument 66 if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_READY) { in bcm47xxnflash_ops_bcm4706_poll() 67 if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & in bcm47xxnflash_ops_bcm4706_poll() 105 bcma_cc_write32(b47n->cc, BCMA_CC_NFLASH_COL_ADDR, in bcm47xxnflash_ops_bcm4706_read() 107 bcma_cc_write32(b47n->cc, BCMA_CC_NFLASH_ROW_ADDR, in bcm47xxnflash_ops_bcm4706_read() 114 if (bcm47xxnflash_ops_bcm4706_ctl_cmd(b47n->cc, ctlcode)) in bcm47xxnflash_ops_bcm4706_read() 116 if (bcm47xxnflash_ops_bcm4706_poll(b47n->cc)) in bcm47xxnflash_ops_bcm4706_read() [all …]
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.19/scripts/ |
| H A D | Makefile.extrawarn | 14 KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned) 26 warning-1 += $(call cc-option, -Wmissing-prototypes) 28 warning-1 += $(call cc-option, -Wmissing-include-dirs) 29 warning-1 += $(call cc-option, -Wunused-but-set-variable) 30 warning-1 += $(call cc-option, -Wunused-const-variable) 31 warning-1 += $(call cc-option, -Wpacked-not-aligned) 32 warning-1 += $(call cc-disable-warning, missing-field-initializers) 33 warning-1 += $(call cc-disable-warning, sign-compare) 40 warning-2 += $(call cc-option, -Wlogical-op) 41 warning-2 += $(call cc-option, -Wmissing-field-initializers) [all …]
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.19/scripts/ |
| H A D | Makefile.extrawarn | 14 KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned) 26 warning-1 += $(call cc-option, -Wmissing-prototypes) 28 warning-1 += $(call cc-option, -Wmissing-include-dirs) 29 warning-1 += $(call cc-option, -Wunused-but-set-variable) 30 warning-1 += $(call cc-option, -Wunused-const-variable) 31 warning-1 += $(call cc-option, -Wpacked-not-aligned) 32 warning-1 += $(call cc-disable-warning, missing-field-initializers) 33 warning-1 += $(call cc-disable-warning, sign-compare) 40 warning-2 += $(call cc-option, -Wlogical-op) 41 warning-2 += $(call cc-option, -Wmissing-field-initializers) [all …]
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | rmd256.c | 47 u32 aa, bb, cc, dd, aaa, bbb, ccc, ddd; in rmd256_transform() local 52 cc = state[2]; in rmd256_transform() 62 ROUND(aa, bb, cc, dd, F1, K1, in[0], 11); in rmd256_transform() 63 ROUND(dd, aa, bb, cc, F1, K1, in[1], 14); in rmd256_transform() 64 ROUND(cc, dd, aa, bb, F1, K1, in[2], 15); in rmd256_transform() 65 ROUND(bb, cc, dd, aa, F1, K1, in[3], 12); in rmd256_transform() 66 ROUND(aa, bb, cc, dd, F1, K1, in[4], 5); in rmd256_transform() 67 ROUND(dd, aa, bb, cc, F1, K1, in[5], 8); in rmd256_transform() 68 ROUND(cc, dd, aa, bb, F1, K1, in[6], 7); in rmd256_transform() 69 ROUND(bb, cc, dd, aa, F1, K1, in[7], 9); in rmd256_transform() [all …]
|
| H A D | rmd320.c | 51 u32 aa, bb, cc, dd, ee, aaa, bbb, ccc, ddd, eee; in rmd320_transform() local 56 cc = state[2]; in rmd320_transform() 68 ROUND(aa, bb, cc, dd, ee, F1, K1, in[0], 11); in rmd320_transform() 69 ROUND(ee, aa, bb, cc, dd, F1, K1, in[1], 14); in rmd320_transform() 70 ROUND(dd, ee, aa, bb, cc, F1, K1, in[2], 15); in rmd320_transform() 71 ROUND(cc, dd, ee, aa, bb, F1, K1, in[3], 12); in rmd320_transform() 72 ROUND(bb, cc, dd, ee, aa, F1, K1, in[4], 5); in rmd320_transform() 73 ROUND(aa, bb, cc, dd, ee, F1, K1, in[5], 8); in rmd320_transform() 74 ROUND(ee, aa, bb, cc, dd, F1, K1, in[6], 7); in rmd320_transform() 75 ROUND(dd, ee, aa, bb, cc, F1, K1, in[7], 9); in rmd320_transform() [all …]
|
| H A D | rmd128.c | 47 u32 aa, bb, cc, dd, aaa, bbb, ccc, ddd; in rmd128_transform() local 52 cc = state[2]; in rmd128_transform() 62 ROUND(aa, bb, cc, dd, F1, K1, in[0], 11); in rmd128_transform() 63 ROUND(dd, aa, bb, cc, F1, K1, in[1], 14); in rmd128_transform() 64 ROUND(cc, dd, aa, bb, F1, K1, in[2], 15); in rmd128_transform() 65 ROUND(bb, cc, dd, aa, F1, K1, in[3], 12); in rmd128_transform() 66 ROUND(aa, bb, cc, dd, F1, K1, in[4], 5); in rmd128_transform() 67 ROUND(dd, aa, bb, cc, F1, K1, in[5], 8); in rmd128_transform() 68 ROUND(cc, dd, aa, bb, F1, K1, in[6], 7); in rmd128_transform() 69 ROUND(bb, cc, dd, aa, F1, K1, in[7], 9); in rmd128_transform() [all …]
|
| H A D | rmd160.c | 51 u32 aa, bb, cc, dd, ee, aaa, bbb, ccc, ddd, eee; in rmd160_transform() local 56 cc = state[2]; in rmd160_transform() 68 ROUND(aa, bb, cc, dd, ee, F1, K1, in[0], 11); in rmd160_transform() 69 ROUND(ee, aa, bb, cc, dd, F1, K1, in[1], 14); in rmd160_transform() 70 ROUND(dd, ee, aa, bb, cc, F1, K1, in[2], 15); in rmd160_transform() 71 ROUND(cc, dd, ee, aa, bb, F1, K1, in[3], 12); in rmd160_transform() 72 ROUND(bb, cc, dd, ee, aa, F1, K1, in[4], 5); in rmd160_transform() 73 ROUND(aa, bb, cc, dd, ee, F1, K1, in[5], 8); in rmd160_transform() 74 ROUND(ee, aa, bb, cc, dd, F1, K1, in[6], 7); in rmd160_transform() 75 ROUND(dd, ee, aa, bb, cc, F1, K1, in[7], 9); in rmd160_transform() [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-security/nmap/files/ |
| H A D | 0001-Include-time.h-header-to-pass-clang-compilation.patch | 7 nmap_error.cc | 11 +---------- 8 nping/EchoServer.cc | 1 + 9 osscan2.cc | 1 + 10 service_scan.cc | 1 + 13 diff --git a/nmap_error.cc b/nmap_error.cc 15 --- a/nmap_error.cc 16 +++ b/nmap_error.cc 35 diff --git a/nping/EchoServer.cc b/nping/EchoServer.cc 37 --- a/nping/EchoServer.cc 38 +++ b/nping/EchoServer.cc [all …]
|
| /OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_109.0.5414/ |
| H A D | 0017-media-Support-AV1-in-V4L2-VDA.patch | 8 media/gpu/v4l2/v4l2_device.cc | 9 +++++++++ 9 media/gpu/v4l2/v4l2_vda_helpers.cc | 1 + 10 media/gpu/v4l2/v4l2_video_decode_accelerator.cc | 2 +- 11 media/gpu/v4l2/v4l2_video_decoder.cc | 1 + 12 media/gpu/v4l2/v4l2_video_decoder_backend_stateful.cc | 1 + 15 diff --git a/media/gpu/v4l2/v4l2_device.cc b/media/gpu/v4l2/v4l2_device.cc 17 --- a/media/gpu/v4l2/v4l2_device.cc 18 +++ b/media/gpu/v4l2/v4l2_device.cc 42 diff --git a/media/gpu/v4l2/v4l2_vda_helpers.cc b/media/gpu/v4l2/v4l2_vda_helpers.cc 44 --- a/media/gpu/v4l2/v4l2_vda_helpers.cc [all …]
|
| H A D | 0015-media-Support-HEVC-in-V4L2-VDA.patch | 8 media/gpu/v4l2/v4l2_device.cc | 9 +++++++++ 9 media/gpu/v4l2/v4l2_vda_helpers.cc | 1 + 10 media/gpu/v4l2/v4l2_video_decode_accelerator.cc | 2 +- 11 media/gpu/v4l2/v4l2_video_decoder.cc | 1 + 12 media/gpu/v4l2/v4l2_video_decoder_backend_stateful.cc | 1 + 15 diff --git a/media/gpu/v4l2/v4l2_device.cc b/media/gpu/v4l2/v4l2_device.cc 17 --- a/media/gpu/v4l2/v4l2_device.cc 18 +++ b/media/gpu/v4l2/v4l2_device.cc 42 diff --git a/media/gpu/v4l2/v4l2_vda_helpers.cc b/media/gpu/v4l2/v4l2_vda_helpers.cc 44 --- a/media/gpu/v4l2/v4l2_vda_helpers.cc [all …]
|
| /OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_105.0.5195/ |
| H A D | 0015-media-Enable-HEVC-by-default-for-V4L2VDA.patch | 8 media/base/media_switches.cc | 2 +- 9 media/gpu/v4l2/v4l2_device.cc | 9 +++++++++ 10 media/gpu/v4l2/v4l2_vda_helpers.cc | 1 + 11 media/gpu/v4l2/v4l2_video_decode_accelerator.cc | 2 +- 12 media/gpu/v4l2/v4l2_video_decoder.cc | 3 ++- 13 media/gpu/v4l2/v4l2_video_decoder_backend_stateful.cc | 1 + 17 diff --git a/media/base/media_switches.cc b/media/base/media_switches.cc 19 --- a/media/base/media_switches.cc 20 +++ b/media/base/media_switches.cc 30 diff --git a/media/gpu/v4l2/v4l2_device.cc b/media/gpu/v4l2/v4l2_device.cc [all …]
|
| /OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_104.0.5112/ |
| H A D | 0016-media-Enable-HEVC-by-default-for-V4L2VDA.patch | 8 media/base/media_switches.cc | 2 +- 9 media/gpu/v4l2/v4l2_device.cc | 9 +++++++++ 10 media/gpu/v4l2/v4l2_vda_helpers.cc | 1 + 11 media/gpu/v4l2/v4l2_video_decode_accelerator.cc | 2 +- 12 media/gpu/v4l2/v4l2_video_decoder.cc | 3 ++- 13 media/gpu/v4l2/v4l2_video_decoder_backend_stateful.cc | 1 + 17 diff --git a/media/base/media_switches.cc b/media/base/media_switches.cc 19 --- a/media/base/media_switches.cc 20 +++ b/media/base/media_switches.cc 30 diff --git a/media/gpu/v4l2/v4l2_device.cc b/media/gpu/v4l2/v4l2_device.cc [all …]
|
| /OK3568_Linux_fs/kernel/kernel/time/ |
| H A D | timecounter.c | 9 const struct cyclecounter *cc, in timecounter_init() argument 12 tc->cc = cc; in timecounter_init() 13 tc->cycle_last = cc->read(cc); in timecounter_init() 15 tc->mask = (1ULL << cc->shift) - 1; in timecounter_init() 37 cycle_now = tc->cc->read(tc->cc); in timecounter_read_delta() 40 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask; in timecounter_read_delta() 43 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta, in timecounter_read_delta() 69 static u64 cc_cyc2ns_backwards(const struct cyclecounter *cc, in cc_cyc2ns_backwards() argument 74 ns = ((ns * cc->mult) - frac) >> cc->shift; in cc_cyc2ns_backwards() 82 u64 delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask; in timecounter_cyc2time() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/stressapptest/git/ |
| H A D | Android.mk | 6 src/main.cc \ 7 src/adler32memcpy.cc \ 8 src/disk_blocks.cc \ 9 src/error_diag.cc \ 10 src/finelock_queue.cc \ 11 src/logger.cc \ 12 src/os.cc \ 13 src/os_factory.cc \ 14 src/pattern.cc \ 15 src/queue.cc \ [all …]
|