| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/charmaps/ |
| HD | ISO_11548-1.gz | ... 1
8CHARMAP
9<U2800> /x00 BRAILLE PATTERN BLANK
10<U2801> /x01 BRAILLE PATTERN DOTS |
| HD | BRF.gz | ... (IS1)
40<U2800> /x20 BRAILLE PATTERN BLANK
41<U282E> /x21 BRAILLE PATTERN DOTS ... |
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/charmaps/ |
| HD | ISO_11548-1.gz | ... 1
8CHARMAP
9<U2800> /x00 BRAILLE PATTERN BLANK
10<U2801> /x01 BRAILLE PATTERN DOTS |
| HD | BRF.gz | ... (IS1)
40<U2800> /x20 BRAILLE PATTERN BLANK
41<U282E> /x21 BRAILLE PATTERN DOTS ... |
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/eeprom/ |
| H A D | at24.yaml | 17 pattern: "^atmel,(24(c|cs|mac)[0-9]+|spd)$" 23 pattern: "^eeprom@[0-9a-f]{1,2}$" 37 … - pattern: "^(atmel|catalyst|microchip|nxp|ramtron|renesas|rohm|st),(24(c|cs|lc|mac)[0-9]+|spd)$" 38 - pattern: "^atmel,(24(c|cs|mac)[0-9]+|spd)$" 41 pattern: c00$ 43 pattern: c01$ 45 pattern: cs01$ 47 pattern: c02$ 49 pattern: cs02$ 51 pattern: mac402$ [all …]
|
| /OK3568_Linux_fs/buildroot/dl/stressapptest/git/src/ |
| H A D | pattern.h | 15 // pattern.h : global pattern references and initialization 34 // Pattern and CRC data structure 36 const char *name; // Name of this pattern. 39 unsigned char weight[4]; // Weighted frequency of this pattern. 40 // Each pattern has 32,64,128,256 width versions. 43 // appropriate pattern is chosen. Thus a weight of 49 class Pattern { 51 Pattern(); 52 ~Pattern(); 53 // Fill pattern data and calculate CRC. [all …]
|
| H A D | pattern.cc | 15 // pattern.cc : library of stressful data patterns 21 #include "pattern.h" 48 {1, 1, 2, 1} // Weight for choosing 32/64/128/256 bit wide of this pattern 236 Pattern::Pattern() { in Pattern() function in Pattern 240 Pattern::~Pattern() { in ~Pattern() 246 // Calculate CRC for this pattern. This must match 248 int Pattern::CalculateCrc() { in CalculateCrc() 262 a1 += pattern(i); in CalculateCrc() 265 a1 += pattern(i); in CalculateCrc() 269 a2 += pattern(i); in CalculateCrc() [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | ts_kmp.c | 13 * auxiliary function PI[1..m], for m being length(pattern), 14 * precomputed from the pattern in time O(m). The array PI allows 37 u8 * pattern; member 56 while (q > 0 && kmp->pattern[q] in kmp_find() 59 if (kmp->pattern[q] in kmp_find() 74 static inline void compute_prefix_tbl(const u8 *pattern, unsigned int len, in compute_prefix_tbl() argument 81 while (k > 0 && (icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 82 != (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() 84 if ((icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 85 == (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() [all …]
|
| H A D | ts_bm.c | 52 u8 * pattern; member 78 != bm->pattern[bm->patlen-1-i]) in bm_find() 96 static int subpattern(u8 *pattern, int i, int j, int g) in subpattern() argument 100 while(pattern[x--] == pattern[y--]) { in subpattern() 106 ret = pattern[i-1] != pattern[j-1]; in subpattern() 121 bm->bad_shift[bm->pattern[i]] = bm->patlen - 1 - i; in compute_prefix_tbl() 123 bm->bad_shift[tolower(bm->pattern[i])] in compute_prefix_tbl() 134 if (subpattern(bm->pattern, i, j, g)) { in compute_prefix_tbl() 141 static struct ts_config *bm_init(const void *pattern, unsigned int len, in bm_init() argument 157 bm->pattern = (u8 *) bm->good_shift + prefix_tbl_len; in bm_init() [all …]
|
| H A D | parser.c | 14 * match_one: - Determines if a string matches a simple pattern 15 * @s: the string to examine for presence of the pattern 16 * @p: the string containing the pattern 20 * Description: Determines if the pattern @p is present in string @s. Can only 21 * match extremely simple token=arg style patterns. If the pattern is found, 96 * &struct match_token whose pattern is set to the NULL pointer. 109 for (p = table; !match_one(s, p->pattern, args) ; p++) in match_token() 239 * match_wildcard: - parse if a string matches given wildcard pattern 240 * @pattern: wildcard pattern 244 * pattern @pattern. The pattern may contain two type wildcardes: [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
| H A D | 05_wildcard_matching.patch | 10 pattern `131.155.72.0/255.255.254.0\' matches every address in the 47 +/* Returns true if the given string matches the pattern (which may contain 50 +int match_pattern_ylo(const char *s, const char *pattern) 54 + /* If at end of pattern, accept if also at end of string. */ 55 + if (!*pattern) 59 + if (*pattern == '*') 62 + pattern++; 64 + /* If at end of pattern, accept immediately. */ 65 + if (!*pattern) 68 + /* If next character in pattern is known, optimize. */ [all …]
|
| /OK3568_Linux_fs/kernel/security/tomoyo/ |
| H A D | util.c | 624 * tomoyo_const_part_length - Evaluate the initial length without a pattern in a token. 628 * Returns the initial length without a pattern in @filename. 684 * tomoyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern. 688 * @pattern: The start of pattern to compare. 689 * @pattern_end: The end of pattern to compare. 691 * Returns true if @filename matches @pattern, false otherwise. 695 const char *pattern, in tomoyo_file_matches_pattern2() argument 698 while (filename < filename_end && pattern < pattern_end) { in tomoyo_file_matches_pattern2() 703 if (*pattern != '\\') { in tomoyo_file_matches_pattern2() 704 if (*filename++ != *pattern++) in tomoyo_file_matches_pattern2() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/ddr/marvell/axp/ |
| H A D | ddr3_sdram.c | 92 static void compare_pattern_v1(u32 uj, u32 *pup, u32 *pattern, in compare_pattern_v1() argument 101 if (((sdram_data[uj]) != (pattern[uj])) && (*pup != 0xFF)) { in compare_pattern_v1() 105 var2 = ((pattern[uj] >> val) & CMP_BYTE_MASK); in compare_pattern_v1() 130 static void compare_pattern_v2(u32 uj, u32 *pup, u32 *pattern) in compare_pattern_v2() argument 137 if (((sdram_data[uj]) != (pattern[uj])) && (*pup != 0x3)) { in compare_pattern_v2() 142 var2 = (pattern[uj] >> val) & CMP_BYTE_MASK; in compare_pattern_v2() 154 * pattern Pattern to compare 155 * pattern_len Length of pattern (in bytes) 158 * mask compare pattern with mask; 159 * mask_pattern Mask to compare pattern [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath9k/ |
| H A D | reg_wow.h | 31 * bit 31:24 pattern 0 length 32 * bit 23:16 pattern 1 length 33 * bit 15:8 pattern 2 length 34 * bit 7:0 pattern 3 length 37 * bit 31:24 pattern 4 length 38 * bit 23:16 pattern 5 length 39 * bit 15:8 pattern 6 length 40 * bit 7:0 pattern 7 length 43 * bit 31:24 pattern 8 length 44 * bit 23:16 pattern 9 length [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/dma/ |
| H A D | renesas,rcar-dmac.yaml | 55 - pattern: "^ch([0-9]|1[0-5])$" 56 - pattern: "^ch([0-9]|1[0-5])$" 57 - pattern: "^ch([0-9]|1[0-5])$" 58 - pattern: "^ch([0-9]|1[0-5])$" 59 - pattern: "^ch([0-9]|1[0-5])$" 60 - pattern: "^ch([0-9]|1[0-5])$" 61 - pattern: "^ch([0-9]|1[0-5])$" 62 - pattern: "^ch([0-9]|1[0-5])$" 63 - pattern: "^ch([0-9]|1[0-5])$" 64 - pattern: "^ch([0-9]|1[0-5])$" [all …]
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | memtest.c | 28 static void __init reserve_bad_mem(u64 pattern, phys_addr_t start_bad, phys_addr_t end_bad) in reserve_bad_mem() argument 31 cpu_to_be64(pattern), &start_bad, &end_bad); in reserve_bad_mem() 35 static void __init memtest(u64 pattern, phys_addr_t start_phys, phys_addr_t size) in memtest() argument 40 const size_t incr = sizeof(pattern); in memtest() 49 *p = pattern; in memtest() 52 if (*p == pattern) in memtest() 59 reserve_bad_mem(pattern, start_bad, last_bad + incr); in memtest() 63 reserve_bad_mem(pattern, start_bad, last_bad + incr); in memtest() 66 static void __init do_one_pass(u64 pattern, phys_addr_t start, phys_addr_t end) in do_one_pass() argument 76 pr_info(" %pa - %pa pattern %016llx\n", in do_one_pass() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/tc/ |
| H A D | tc.c | 44 u8 pattern[4]; in tc_bus_add_devices() local 56 err |= tc_preadb(pattern + 0, module + offset + TC_PATTERN0); in tc_bus_add_devices() 57 err |= tc_preadb(pattern + 1, module + offset + TC_PATTERN1); in tc_bus_add_devices() 58 err |= tc_preadb(pattern + 2, module + offset + TC_PATTERN2); in tc_bus_add_devices() 59 err |= tc_preadb(pattern + 3, module + offset + TC_PATTERN3); in tc_bus_add_devices() 63 if (pattern[0] != 0x55 || pattern[1] != 0x00 || in tc_bus_add_devices() 64 pattern[2] != 0xaa || pattern[3] != 0xff) { in tc_bus_add_devices() 68 err |= tc_preadb(pattern + 0, in tc_bus_add_devices() 70 err |= tc_preadb(pattern + 1, in tc_bus_add_devices() 72 err |= tc_preadb(pattern + 2, in tc_bus_add_devices() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/leds/ |
| H A D | leds-lp55xx.rst | 63 This pattern data is saved as a file in the user-land or 70 To load and run the pattern, the programming sequence is following. 74 (3) Write pattern data into selected area 90 For example, run blinking pattern in engine #1 of LP5521:: 98 For example, run blinking pattern in engine #3 of LP55231 100 Two LEDs are configured as pattern output channels:: 134 To run programmed pattern, 'run_engine' attribute should be enabled. 136 The pattern sequence of LP8501 is similar to LP5523. 138 However pattern data is specific. 179 ( Predefined pattern data ) [all …]
|
| /OK3568_Linux_fs/buildroot/package/noto/ |
| H A D | 70-fonts-noto-cjk.conf | 4 <match target="pattern"> 16 <match target="pattern"> 28 <match target="pattern"> 40 <match target="pattern"> 52 <match target="pattern"> 64 <match target="pattern"> 76 <match target="pattern"> 88 <match target="pattern"> 100 <match target="pattern"> 112 <match target="pattern"> [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/ddr/marvell/a38x/ |
| H A D | ddr3_training_ip_engine.c | 86 * num tx phases, tx burst, delay between, rx pattern, 114 * num tx phases, tx burst, delay between, rx pattern, 181 enum hws_pattern pattern, in ddr3_tip_ip_training() argument 212 /* load pattern */ in ddr3_tip_ip_training() 234 /* load pattern to ODPG */ in ddr3_tip_ip_training() 236 pattern, in ddr3_tip_ip_training() 237 pattern_table[pattern].start_addr); in ddr3_tip_ip_training() 239 pattern_table[pattern].tx_burst_size : 0; in ddr3_tip_ip_training() 244 pattern_table[pattern].num_of_phases_tx, tx_burst_size, in ddr3_tip_ip_training() 245 pattern_table[pattern].num_of_phases_rx, in ddr3_tip_ip_training() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/xilinx/ |
| H A D | xilinx-tpg.c | 3 * Xilinx Test Pattern Generator 71 * struct xtpg_device - Xilinx Test Pattern Generator device structure 83 * @pattern: test pattern control 103 struct v4l2_ctrl *pattern; member 132 bool passthrough, bool pattern) in __xtpg_update_pattern_control() argument 134 u32 pattern_mask = (1 << (xtpg->pattern->maximum + 1)) - 1; in __xtpg_update_pattern_control() 147 /* If test pattern mode is allowed unmask all other bits. */ in __xtpg_update_pattern_control() 148 if (pattern) in __xtpg_update_pattern_control() 151 __v4l2_ctrl_modify_range(xtpg->pattern, 0, xtpg->pattern->maximum, in __xtpg_update_pattern_control() 152 pattern_mask, pattern ? 9 : 0); in __xtpg_update_pattern_control() [all …]
|
| /OK3568_Linux_fs/u-boot/post/drivers/ |
| H A D | memory.c | 32 * pattern to the target location, write a different pattern elsewhere 70 * After writing a test pattern. a special pattern 0x0123456789ABCDEF is 73 * pattern in that byte lane when the test runs. For example, if the 75 * (for the 'a' test pattern). 91 * test pattern we use is a ulong and thus, if we tried to test lower 92 * order address bits, it wouldn't work because our pattern would 117 * verify RAM. Each test case fills a region of RAM with one pattern and 118 * then reads the region back and compares its contents with the pattern. 121 * 1a) zero pattern (0x00000000) 122 * 1b) negative pattern (0xffffffff) [all …]
|
| /OK3568_Linux_fs/u-boot/include/linux/mtd/ |
| H A D | bbm.h | 30 * @offs: offset of the pattern in the oob area of the page 33 * @len: length of the pattern, if 0 no pattern check is performed 37 * @reserved_block_code: if non-0, this pattern denotes a reserved (rather than 39 * @pattern: pattern to identify bad block table or factory marked good / 43 * pattern which identifies good and bad blocks. The assumption is made 44 * that the pattern and the version count are always located in the oob area 56 uint8_t *pattern; member 88 /* Search good / bad pattern on the first and the second page */ 90 /* Search good / bad pattern on the last page of the eraseblock */ 139 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for
|
| /OK3568_Linux_fs/u-boot/post/cpu/mpc83xx/ |
| H A D | ecc.c | 50 u32 pattern[2], writeback[2], retval[2]; in ecc_post_test() local 54 /* The pattern is written into memory to generate error */ in ecc_post_test() 55 pattern[0] = 0xfedcba98UL; in ecc_post_test() 56 pattern[1] = 0x76543210UL; in ecc_post_test() 59 writeback[0] = ~pattern[0]; in ecc_post_test() 60 writeback[1] = ~pattern[1]; in ecc_post_test() 99 ppcDWstore((u32*)addr, pattern); in ecc_post_test() 113 (__raw_readl(&ddr->capture_data_hi) ^ pattern[0])) || in ecc_post_test() 115 (__raw_readl(&ddr->capture_data_lo) ^ pattern[1]))) { in ecc_post_test() 122 pattern[0], pattern[1], in ecc_post_test()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | vector-builder.h | 25 where each pattern represents a sequence: 29 The first three elements in each pattern provide enough information 31 we only need to encode the first two elements in each pattern. 33 encode the first element in each pattern. The number of encoded 34 elements per pattern is given by nelts_per_pattern. 87 the last encoded element for the containing pattern. This is 108 Return the number of elements used to encode each pattern 240 /* Identify the pattern that contains element I and work out the index of in elt() 241 the last encoded element for that pattern. */ in elt() 242 unsigned int pattern = i % m_npatterns; in elt() local [all …]
|