Home
last modified time | relevance | path

Searched full:sets (Results 1 – 25 of 4447) sorted by relevance

12345678910>>...178

/OK3568_Linux_fs/kernel/fs/nls/
H A DKconfig44 native language character sets. These character sets are stored
56 native language character sets. These character sets are stored
68 native language character sets. These character sets are stored
81 native language character sets. These character sets are stored in
97 native language character sets. These character sets are stored in
112 native language character sets. These character sets are stored in
123 native language character sets. These character sets are stored in
134 native language character sets. These character sets are stored in
145 native language character sets. These character sets are stored in
156 native language character sets. These character sets are stored in
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/amazon/
H A Dalpine-v3.dtsi30 d-cache-sets = <256>;
33 i-cache-sets = <256>;
44 d-cache-sets = <256>;
47 i-cache-sets = <256>;
58 d-cache-sets = <256>;
61 i-cache-sets = <256>;
72 d-cache-sets = <256>;
75 i-cache-sets = <256>;
86 d-cache-sets = <256>;
89 i-cache-sets = <256>;
[all …]
/OK3568_Linux_fs/kernel/arch/mips/mm/
H A Dc-octeon.c180 c->icache.sets = 64 << ((config1 >> 22) & 7); in probe_octeon()
184 c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon()
188 c->dcache.sets = 2; /* CN5XXX has two Dcache sets */ in probe_octeon()
190 c->dcache.sets = 1; /* CN3XXX has one Dcache set */ in probe_octeon()
193 c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon()
200 c->icache.sets = 8; in probe_octeon()
203 icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon()
207 c->dcache.sets = 8; in probe_octeon()
208 dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon()
214 c->icache.sets = 16; in probe_octeon()
[all …]
H A Dsc-mips.c153 unsigned long sets, line_sz, assoc; in mips_sc_probe_cm3() local
158 sets = cfg & CM_GCR_L2_CONFIG_SET_SIZE; in mips_sc_probe_cm3()
159 sets >>= __ffs(CM_GCR_L2_CONFIG_SET_SIZE); in mips_sc_probe_cm3()
160 if (sets) in mips_sc_probe_cm3()
161 c->scache.sets = 64 << sets; in mips_sc_probe_cm3()
171 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe_cm3()
214 c->scache.sets = 64 << tmp; in mips_sc_probe()
236 * According to config2 it would be 5-ways and 512-sets, in mips_sc_probe()
241 c->scache.sets = 256; in mips_sc_probe()
247 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe()
/OK3568_Linux_fs/kernel/arch/riscv/kernel/
H A Dcacheinfo.c69 unsigned int sets, unsigned int line_size) in ci_leaf_init() argument
74 this_leaf->number_of_sets = sets; in ci_leaf_init()
81 if (sets == 1) in ci_leaf_init()
88 if (sets > 0 && size > 0 && line_size > 0) in ci_leaf_init()
89 this_leaf->ways_of_associativity = (size / sets) / line_size; in ci_leaf_init()
95 unsigned int size, sets, line_size; in fill_cacheinfo() local
99 !of_property_read_u32(node, "cache-sets", &sets)) { in fill_cacheinfo()
100 ci_leaf_init((*this_leaf)++, CACHE_TYPE_UNIFIED, level, size, sets, line_size); in fill_cacheinfo()
104 !of_property_read_u32(node, "i-cache-sets", &sets) && in fill_cacheinfo()
106 ci_leaf_init((*this_leaf)++, CACHE_TYPE_INST, level, size, sets, line_size); in fill_cacheinfo()
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-fm-tx.rst30 Sets the RDS Programme Identification field for transmission.
33 Sets the RDS Programme Type field for transmission. This encodes up
37 Sets the Programme Service name (PS_NAME) for transmission. It is
49 Sets the Radio Text info for transmission. It is a textual
64 Sets the Mono/Stereo bit of the Decoder Identification code. If set,
68 Sets the
74 Sets the Compressed bit of the Decoder Identification code. If set,
78 Sets the Dynamic PTY bit of the Decoder Identification code. If set,
106 Sets the audio deviation limiter feature release time. Unit is in
120 Sets the gain for audio compression feature. It is a dB value. The
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/
H A Dbytestring.h51 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
91 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
95 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
99 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
103 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
107 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
111 // CBS_get_bytes sets |*out| to the next |len| bytes from |cbs| and advances
119 // CBS_get_u8_length_prefixed sets |*out| to the contents of an 8-bit,
124 // CBS_get_u16_length_prefixed sets |*out| to the contents of a 16-bit,
129 // CBS_get_u24_length_prefixed sets |*out| to the contents of a 24-bit,
[all …]
H A Dbn.h183 // BN_dup allocates a new BIGNUM and sets it equal to |src|. It returns the
187 // BN_copy sets |dest| equal to |src| and returns |dest| or NULL on allocation
191 // BN_clear sets |bn| to zero and erases the old data.
208 // BN_zero sets |bn| to zero.
211 // BN_one sets |bn| to one. It returns one on success or zero on allocation
215 // BN_set_word sets |bn| to |value|. It returns one on success or zero on
219 // BN_set_u64 sets |bn| to |value|. It returns one on success or zero on
223 // BN_set_negative sets the sign of |bn|.
232 // BN_bin2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
243 // BN_le2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/openssl/
H A Dbytestring.h51 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
91 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
95 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
99 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
103 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
107 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
111 // CBS_get_bytes sets |*out| to the next |len| bytes from |cbs| and advances
119 // CBS_get_u8_length_prefixed sets |*out| to the contents of an 8-bit,
124 // CBS_get_u16_length_prefixed sets |*out| to the contents of a 16-bit,
129 // CBS_get_u24_length_prefixed sets |*out| to the contents of a 24-bit,
[all …]
H A Dbn.h183 // BN_dup allocates a new BIGNUM and sets it equal to |src|. It returns the
187 // BN_copy sets |dest| equal to |src| and returns |dest| or NULL on allocation
191 // BN_clear sets |bn| to zero and erases the old data.
208 // BN_zero sets |bn| to zero.
211 // BN_one sets |bn| to one. It returns one on success or zero on allocation
215 // BN_set_word sets |bn| to |value|. It returns one on success or zero on
219 // BN_set_u64 sets |bn| to |value|. It returns one on success or zero on
223 // BN_set_negative sets the sign of |bn|.
232 // BN_bin2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
243 // BN_le2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
[all …]
/OK3568_Linux_fs/kernel/arch/riscv/boot/dts/sifive/
H A Dfu540-c000.dtsi29 i-cache-sets = <128>;
43 d-cache-sets = <64>;
45 d-tlb-sets = <1>;
49 i-cache-sets = <64>;
51 i-tlb-sets = <1>;
67 d-cache-sets = <64>;
69 d-tlb-sets = <1>;
73 i-cache-sets = <64>;
75 i-tlb-sets = <1>;
91 d-cache-sets = <64>;
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/marvell/
H A Darmada-ap806-quad.dtsi27 i-cache-sets = <256>;
30 d-cache-sets = <256>;
42 i-cache-sets = <256>;
45 d-cache-sets = <256>;
57 i-cache-sets = <256>;
60 d-cache-sets = <256>;
72 i-cache-sets = <256>;
75 d-cache-sets = <256>;
83 cache-sets = <512>;
90 cache-sets = <512>;
H A Darmada-ap807-quad.dtsi27 i-cache-sets = <256>;
30 d-cache-sets = <256>;
42 i-cache-sets = <256>;
45 d-cache-sets = <256>;
57 i-cache-sets = <256>;
60 d-cache-sets = <256>;
72 i-cache-sets = <256>;
75 d-cache-sets = <256>;
83 cache-sets = <512>;
90 cache-sets = <512>;
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/ti/
H A Dk3-am654.dtsi43 i-cache-sets = <256>;
46 d-cache-sets = <128>;
57 i-cache-sets = <256>;
60 d-cache-sets = <128>;
71 i-cache-sets = <256>;
74 d-cache-sets = <128>;
85 i-cache-sets = <256>;
88 d-cache-sets = <128>;
98 cache-sets = <512>;
107 cache-sets = <512>;
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/openssl/
H A Dbytestring.h58 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
98 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
102 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
106 // CBS_get_u16le sets |*out| to the next, little-endian uint16_t from |cbs| and
110 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
114 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
118 // CBS_get_u32le sets |*out| to the next, little-endian uint32_t value from
122 // CBS_get_u64 sets |*out| to the next, big-endian uint64_t value from |cbs|
126 // CBS_get_u64le sets |*out| to the next, little-endian uint64_t value from
130 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
[all …]
H A Dbn.h185 // BN_dup allocates a new BIGNUM and sets it equal to |src|. It returns the
189 // BN_copy sets |dest| equal to |src| and returns |dest| or NULL on allocation
193 // BN_clear sets |bn| to zero and erases the old data.
210 // BN_zero sets |bn| to zero.
213 // BN_one sets |bn| to one. It returns one on success or zero on allocation
217 // BN_set_word sets |bn| to |value|. It returns one on success or zero on
221 // BN_set_u64 sets |bn| to |value|. It returns one on success or zero on
225 // BN_set_negative sets the sign of |bn|.
234 // BN_bin2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
246 // BN_le2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/openssl/
H A Dbytestring.h58 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
98 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
102 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
106 // CBS_get_u16le sets |*out| to the next, little-endian uint16_t from |cbs| and
110 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
114 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
118 // CBS_get_u32le sets |*out| to the next, little-endian uint32_t value from
122 // CBS_get_u64 sets |*out| to the next, big-endian uint64_t value from |cbs|
126 // CBS_get_u64le sets |*out| to the next, little-endian uint64_t value from
130 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/
H A Dbytestring.h58 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
98 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
102 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
106 // CBS_get_u16le sets |*out| to the next, little-endian uint16_t from |cbs| and
110 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
114 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
118 // CBS_get_u32le sets |*out| to the next, little-endian uint32_t value from
122 // CBS_get_u64 sets |*out| to the next, big-endian uint64_t value from |cbs|
126 // CBS_get_u64le sets |*out| to the next, little-endian uint64_t value from
130 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
[all …]
H A Dbn.h185 // BN_dup allocates a new BIGNUM and sets it equal to |src|. It returns the
189 // BN_copy sets |dest| equal to |src| and returns |dest| or NULL on allocation
193 // BN_clear sets |bn| to zero and erases the old data.
210 // BN_zero sets |bn| to zero.
213 // BN_one sets |bn| to one. It returns one on success or zero on allocation
217 // BN_set_word sets |bn| to |value|. It returns one on success or zero on
221 // BN_set_u64 sets |bn| to |value|. It returns one on success or zero on
225 // BN_set_negative sets the sign of |bn|.
234 // BN_bin2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
246 // BN_le2bn sets |*ret| to the value of |len| bytes from |in|, interpreted as
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/
H A Dbytestring.h58 // CBS_init sets |cbs| to point to |data|. It does not take ownership of
98 // CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
102 // CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
106 // CBS_get_u16le sets |*out| to the next, little-endian uint16_t from |cbs| and
110 // CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
114 // CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
118 // CBS_get_u32le sets |*out| to the next, little-endian uint32_t value from
122 // CBS_get_u64 sets |*out| to the next, big-endian uint64_t value from |cbs|
126 // CBS_get_u64le sets |*out| to the next, little-endian uint64_t value from
130 // CBS_get_last_u8 sets |*out| to the last uint8_t from |cbs| and shortens
[all …]
/OK3568_Linux_fs/external/xserver/man/
H A DXserver.man80 sets pointer acceleration (i.e. the ratio of how much is reported to how much
90 sets the audit trail level. The default level is 1, meaning only connection
110 sets the default root window to solid black instead of the standard root weave
120 sets key-click volume (allowable range: 0-100).
123 sets the visual class for the root window of color screens.
143 sets the resolution for all screens, in dots per inch.
164 sets beep (bell) volume (allowable range: 0-100).
167 sets default cursor font.
170 sets the default font.
173 sets the search path for fonts. This path is a comma separated list
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/arm/
H A Djuno-r2.dts94 i-cache-sets = <256>;
97 d-cache-sets = <256>;
112 i-cache-sets = <256>;
115 d-cache-sets = <256>;
130 i-cache-sets = <256>;
133 d-cache-sets = <128>;
148 i-cache-sets = <256>;
151 d-cache-sets = <128>;
166 i-cache-sets = <256>;
169 d-cache-sets = <128>;
[all …]
H A Djuno.dts93 i-cache-sets = <256>;
96 d-cache-sets = <256>;
111 i-cache-sets = <256>;
114 d-cache-sets = <256>;
129 i-cache-sets = <256>;
132 d-cache-sets = <128>;
147 i-cache-sets = <256>;
150 d-cache-sets = <128>;
165 i-cache-sets = <256>;
168 d-cache-sets = <128>;
[all …]
H A Djuno-r1.dts94 i-cache-sets = <256>;
97 d-cache-sets = <256>;
111 i-cache-sets = <256>;
114 d-cache-sets = <256>;
128 i-cache-sets = <256>;
131 d-cache-sets = <128>;
145 i-cache-sets = <256>;
148 d-cache-sets = <128>;
162 i-cache-sets = <256>;
165 d-cache-sets = <128>;
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dbcm2837.dtsi43 /* Source for d/i-cache-line-size and d/i-cache-sets
58 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set
61 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set
73 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set
76 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set
88 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set
91 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set
103 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set
106 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set
110 /* Source for cache-line-size + cache-sets
[all …]

12345678910>>...178