HomeSort by: relevance | last modified time | path
    Searched defs:cluster (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/arm/sunxi/
sun8i_a83t_ccu.c 49 #define Cx_CPUX_CLK_SRC_SEL(cluster) __BIT(12 + (cluster) * 16)
138 const int cluster = clk->u.nkmp.reg == PLL_C0CPUX_CTRL_REG ? 0 : 1; local in function:sun8i_a83t_ccu_cpux_set_rate
147 /* Switch cluster to OSC24M clock */
150 val &= ~Cx_CPUX_CLK_SRC_SEL(cluster);
164 /* Switch cluster back to CPUX PLL */
167 val |= Cx_CPUX_CLK_SRC_SEL(cluster);
sun9i_a80_ccu.c 49 #define CPU_CLK_SRC_SELECT(cluster) __BIT((cluster) * 8)
140 const int cluster = clk->u.nkmp.reg == PLL_C0CPUX_CTRL_REG ? 0 : 1; local in function:sun9i_a80_ccu_cpux_set_rate
149 /* Switch cluster to OSC24M clock */
152 val &= ~CPU_CLK_SRC_SELECT(cluster);
166 /* Switch cluster back to CPUX PLL */
169 val |= CPU_CLK_SRC_SELECT(cluster);
170 CCU_WRITE(sc, CPU_CLK_SRC_SELECT(cluster), val);
sunxi_mc_smp.c 55 #define PRCM_CL_RST_CTRL(cluster) (0x4 + (cluster) * 0x4)
56 #define PRCM_CL_PWROFF(cluster) (0x100 + (cluster) * 0x4)
57 #define PRCM_CL_PWR_CLAMP(cluster, cpu) (0x140 + (cluster) * 0x10 + (cpu) * 0x4)
63 #define CPUCFG_CL_RST(cluster) (0x30 + (cluster) * 0x4)
69 #define CPUXCFG_CL_RST(cluster) (0x80 + (cluster) * 0x4
208 const u_int cluster = __SHIFTOUT(mpidr, MPIDR_AFF1); local in function:sun8i_a83t_smp_enable
242 const u_int cluster = __SHIFTOUT(mpidr, MPIDR_AFF1); local in function:sun9i_a80_smp_enable
    [all...]
  /src/sys/fs/msdosfs/
msdosfs_lookup.c 111 u_long cluster; local in function:msdosfs_lookup
116 u_long scn; /* starting cluster number */
181 cluster = MSDOSFSROOT;
229 * little differently. The root directory starts at "cluster" 0.
233 if ((error = msdosfs_pcbmap(dp, frcn, &bn, &cluster,
346 * Release the buffer holding the directory cluster just
448 cluster = scn;
449 if (cluster == MSDOSFSROOT)
453 } else if (cluster == MSDOSFSROOT)
500 error = msdosfs_deget(pmp, cluster, blkoff, vpp)
    [all...]
  /src/usr.sbin/makefs/msdos/
msdosfs_vnops.c 145 u_long cluster; local in function:msdosfs_findslot
196 * little differently. The root directory starts at "cluster" 0.
200 if ((error = msdosfs_pcbmap(dp, frcn, &bn, &cluster,
295 * Release the buffer holding the directory cluster just
527 { 0, 0 }, /* high bits of start cluster */
537 { 0, 0 }, /* high bits of start cluster */
571 * Allocate a cluster to hold the about to be created directory.
583 * Now fill the cluster with the "." and ".." entries. And write
584 * the cluster to disk. This way it is there for the parent
628 * cluster. This will be written to an empty slot in the paren
    [all...]
  /src/sys/arch/arm/samsung/
exynos_platform.c 150 const u_int cluster = __SHIFTOUT(mpidr, MPIDR_AFF1); local in function:exynos5800_mpstart
152 const u_int cpu = cluster * 4 + aff0;
155 if (cluster == 1)
173 if (cluster == 1 && __SHIFTOUT(bp_mpidr, MPIDR_AFF1) == 1) {
  /src/usr.sbin/sysinst/arch/mac68k/
md.h 108 u_int8_t cluster; /* Autorecovery cluster grouping */ member in struct:__anon66f6aa490308
  /src/sys/arch/x86/x86/
x86_machdep.c 576 phys_ram_seg_t *cluster; local in function:x86_add_cluster
596 cluster = &mem_clusters[i];
597 if ((cluster->start == round_page(seg_start)) &&
598 (cluster->size == trunc_page(seg_end) - cluster->start)) {
607 * This cluster is used by RAM. If it is included in the iomem extent,
657 cluster = &mem_clusters[mem_cluster_cnt];
658 cluster->start = seg_start;
673 cluster->size = seg_end - seg_start;
765 phys_ram_seg_t *cluster; local in function:x86_fake_clusters
988 const phys_ram_seg_t *cluster = &mem_clusters[x]; local in function:init_x86_vm
    [all...]
  /src/sys/dev/usb/
uaudio.c 880 printf("cluster: bNrChannels=%u wChannelConfig=%#.4x",
887 printf("cluster: bNrChannels=%u bmChannelConfig=%#.8x",
2754 union usb_audio_cluster cluster; local in function:uaudio_identify_ac
2764 cluster = uaudio_get_cluster(sc, i, iot);
2765 uaudio_dump_cluster(sc, &cluster);
2778 cluster = uaudio_get_cluster(sc, i, iot);
2779 uaudio_dump_cluster(sc, &cluster);
2813 cluster = uaudio_get_cluster(sc, i, iot);
2814 uaudio_dump_cluster(sc, &cluster);
2822 cluster = uaudio_get_cluster(sc, i, iot)
    [all...]
  /src/sys/dev/ic/
mfireg.h 1057 uint32_t cluster; member in struct:mfi_ctrl_info

Completed in 22 milliseconds