/openbmc/qemu/tests/qemu-iotests/ |
H A D | 021.out | 5 -1 is not a valid pattern byte 8 -1 is not a valid pattern byte 11 -1 is not a valid pattern byte 14 -1 is not a valid pattern byte 17 -1 is not a valid pattern byte 20 -1 is not a valid pattern byte 23 300 is not a valid pattern byte 26 300 is not a valid pattern byte 29 300 is not a valid pattern byte 32 300 is not a valid pattern byte [all …]
|
H A D | 024.out | 5 === IO: pattern 0x11 25 === IO: pattern 0x22 37 === IO: pattern 0x33 40 === IO: pattern 0x33 45 === IO: pattern 0x33 48 === IO: pattern 0x33 51 === IO: pattern 0x33 54 === IO: pattern 0x33 57 === IO: pattern 0x11 60 === IO: pattern 0x00 [all …]
|
H A D | 271.out | 8 write -q -P PATTERN 0 1k 10 write -q -P PATTERN 3k 512 12 write -q -P PATTERN 5k 1k 14 write -q -P PATTERN 6k 2k 16 write -q -P PATTERN 8k 6k 18 write -q -P PATTERN 15k 4k 20 write -q -P PATTERN 32k 1k 22 write -q -P PATTERN 63k 4k 29 write -q -P PATTERN 0 64k 35 write -q -P PATTERN 3k 512 [all …]
|
H A D | 075.out | 12 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: block_size 513 must be a multiple of 512 15 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: block_size cannot be zero 18 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: block_size 4294966784 must be 64 MB or le… 21 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: n_blocks 4294967295 must be 536870911 or … 24 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: image requires too many offsets, try incr… 27 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: offsets not monotonically increasing at i… 30 qemu-io: can't open device TEST_DIR/simple-pattern.cloop: invalid compressed block size at index 1,…
|
H A D | 149.out | 8 # Write test pattern 0xa7 14 # Write test pattern 0x13 22 # Read test pattern 0xa7 27 # Read test pattern 0x13 32 # Write test pattern 0x91 37 # Write test pattern 0x5e 44 # Read test pattern 0x91 50 # Read test pattern 0x5e 66 # Write test pattern 0xa7 72 # Write test pattern 0x13 [all …]
|
H A D | 075 | 50 _use_sample_img simple-pattern.cloop.bz2 55 _use_sample_img simple-pattern.cloop.bz2 60 _use_sample_img simple-pattern.cloop.bz2 66 _use_sample_img simple-pattern.cloop.bz2 72 _use_sample_img simple-pattern.cloop.bz2 78 _use_sample_img simple-pattern.cloop.bz2 84 _use_sample_img simple-pattern.cloop.bz2 90 _use_sample_img simple-pattern.cloop.bz2 97 _use_sample_img simple-pattern.cloop.bz2
|
H A D | 048.out | 3 === IO: pattern 45 23 === IO: pattern 67 28 === IO: pattern 123 34 === IO: pattern 100 37 === IO: pattern 101
|
H A D | 257 | 33 class Pattern: class 46 """Grouping of Pattern objects. Initialize with an iterable of Patterns.""" 51 """Calculate the unique bits dirtied by this pattern grouping""" 53 for pattern in self.patterns: 54 res |= pattern.bits(granularity) 61 Pattern('0x49', 0x0000000), 62 Pattern('0x6c', 0x0100000), # 1M 63 Pattern('0x6f', 0x2000000), # 32M 64 Pattern('0x76', 0x3ff0000)]), # 64M - 64K 67 Pattern('0x65', 0x0000000), # Full overwrite [all …]
|
/openbmc/openbmc/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 …]
|
/openbmc/u-boot/drivers/ddr/marvell/axp/ |
H A D | ddr3_sdram.c | 91 static void compare_pattern_v1(u32 uj, u32 *pup, u32 *pattern, in compare_pattern_v1() argument 100 if (((sdram_data[uj]) != (pattern[uj])) && (*pup != 0xFF)) { in compare_pattern_v1() 104 var2 = ((pattern[uj] >> val) & CMP_BYTE_MASK); in compare_pattern_v1() 129 static void compare_pattern_v2(u32 uj, u32 *pup, u32 *pattern) in compare_pattern_v2() argument 136 if (((sdram_data[uj]) != (pattern[uj])) && (*pup != 0x3)) { in compare_pattern_v2() 141 var2 = (pattern[uj] >> val) & CMP_BYTE_MASK; in compare_pattern_v2() 153 * pattern Pattern to compare 154 * pattern_len Length of pattern (in bytes) 157 * mask compare pattern with mask; 158 * mask_pattern Mask to compare pattern [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/geany/geany-plugins/ |
H A D | 0003-projectorganizer-Use-g_pattern_spec_match_string-ins.patch | 23 GPatternSpec *pattern = g_pattern_spec_new(ft->pattern[j]); 25 - if (g_pattern_match_string(pattern, utf8_base_filename)) 26 + if (g_pattern_spec_match_string(pattern, utf8_base_filename)) 29 g_pattern_spec_free(pattern); 38 - if (g_pattern_match_string(pattern, utf8_name)) 39 + if (g_pattern_spec_match_string(pattern, utf8_name)) 59 GPatternSpec *pattern = elem->data; 60 - if (g_pattern_match_string(pattern, str)) 61 + if (g_pattern_spec_match_string(pattern, str)) 69 - if (g_pattern_match_string(pattern, base_name)) [all …]
|
/openbmc/u-boot/drivers/ddr/marvell/a38x/ |
H A D | ddr3_training_bist.c | 20 int ddr3_tip_bist_activate(u32 dev_num, enum hws_pattern pattern, in ddr3_tip_bist_activate() argument 44 ddr3_tip_load_pattern_to_odpg(0, access_type, 0, pattern, offset); in ddr3_tip_bist_activate() 48 pattern_table[pattern].tx_burst_size : 0; in ddr3_tip_bist_activate() 52 pattern_table[pattern].num_of_phases_tx, tx_burst_size, in ddr3_tip_bist_activate() 53 pattern_table[pattern].num_of_phases_rx, in ddr3_tip_bist_activate() 118 int hws_ddr3_run_bist(u32 dev_num, enum hws_pattern pattern, u32 *result, in hws_ddr3_run_bist() argument 130 ret = ddr3_tip_bist_activate(dev_num, pattern, in hws_ddr3_run_bist() 141 ret = ddr3_tip_bist_activate(dev_num, pattern, in hws_ddr3_run_bist() 224 static int mv_ddr_tip_bist(enum hws_dir dir, u32 val, enum hws_pattern pattern, u32 cs, u32 *result) in mv_ddr_tip_bist() argument 234 TIP_ITERATION_NUM, pattern, EDGE_FP, CS_SINGLE, cs, &training_result); in mv_ddr_tip_bist() [all …]
|
H A D | ddr3_training_db.c | 665 u32 pattern = 0; in pattern_table_get_word() local 675 pattern = PATTERN_55; in pattern_table_get_word() 677 pattern = PATTERN_AA; in pattern_table_get_word() 681 pattern = PATTERN_55; in pattern_table_get_word() 683 pattern = PATTERN_AA; in pattern_table_get_word() 687 pattern = PATTERN_00; in pattern_table_get_word() 689 pattern = PATTERN_80; in pattern_table_get_word() 692 pattern = pattern_table_get_static_pbs_word(index); in pattern_table_get_word() 702 pattern = pattern_table_get_killer_word( in pattern_table_get_word() 707 pattern = PATTERN_00; in pattern_table_get_word() [all …]
|
/openbmc/openbmc/meta-security/dynamic-layers/meta-perl/recipes-security/bastille/files/ |
H A D | FileContent.pm | 38 # &B_blank_file ($filename,$pattern) blanks the file $filename, unless the 39 # pattern $pattern is present in the file. This lets us completely redo 53 my ($filename,$pattern) = @_; 67 if ($line =~ $pattern) { 92 # &B_insert_line_after ($filename,$pattern,$line_to_insert,$line_to_follow) 94 # in the file matches $pattern. The $line_to_insert will be placed 110 my ($filename,$pattern,$line_to_insert,$line_to_follow) = @_; 120 # Read through the file looking for a match both on the $pattern 126 if ($line =~ $pattern) { 166 # &B_insert_line_before ($filename,$pattern,$line_to_insert,$line_to_preceed) [all …]
|
/openbmc/u-boot/include/linux/mtd/ |
H A D | bbm.h | 29 * @offs: offset of the pattern in the oob area of the page 32 * @len: length of the pattern, if 0 no pattern check is performed 36 * @reserved_block_code: if non-0, this pattern denotes a reserved (rather than 38 * @pattern: pattern to identify bad block table or factory marked good / 42 * pattern which identifies good and bad blocks. The assumption is made 43 * that the pattern and the version count are always located in the oob area 55 uint8_t *pattern; member 87 /* Search good / bad pattern on the first and the second page */ 89 /* Search good / bad pattern on the last page of the eraseblock */ 138 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for
|
/openbmc/u-boot/post/cpu/mpc83xx/ |
H A D | ecc.c | 49 u32 pattern[2], writeback[2], retval[2]; in ecc_post_test() local 53 /* The pattern is written into memory to generate error */ in ecc_post_test() 54 pattern[0] = 0xfedcba98UL; in ecc_post_test() 55 pattern[1] = 0x76543210UL; in ecc_post_test() 58 writeback[0] = ~pattern[0]; in ecc_post_test() 59 writeback[1] = ~pattern[1]; in ecc_post_test() 98 ppcDWstore((u32*)addr, pattern); in ecc_post_test() 112 (__raw_readl(&ddr->capture_data_hi) ^ pattern[0])) || in ecc_post_test() 114 (__raw_readl(&ddr->capture_data_lo) ^ pattern[1]))) { in ecc_post_test() 121 pattern[0], pattern[1], in ecc_post_test()
|
/openbmc/estoraged/include/ |
H A D | pattern.hpp | 17 class Pattern : public Erase class 20 /** @brief Creates a pattern erase object. 24 Pattern(std::string_view inDevPath) : Erase(inDevPath) {} in Pattern() function in estoraged::Pattern 26 /** @brief writes an incompressible random pattern to the drive, using 36 /** @brief writes an incompressible random pattern to the drive 44 /** @brief verifies the incompressible random pattern is on the drive, using 54 /** @brief verifies the incompressible random pattern is on the drive
|
/openbmc/qemu/docs/tools/ |
H A D | qemu-trace-stap.rst | 34 .. option:: list BINARY PATTERN... 37 *PATTERN*. 42 *PATTERN* is a plain string that is used to filter the results of 45 *PATTERN* arguments may be given, causing listing of probes that match 46 any of the listed names. If no *PATTERN* is given, the all possible 63 .. option:: run OPTIONS BINARY PATTERN... 66 executing *BINARY* triggers a probe matching *PATTERN*. 71 *PATTERN* is a plain string that matches a probe name shown by the 74 Multiple *PATTERN* arguments may be given, causing all matching probes 75 to be monitored. At least one *PATTERN* is required, since stap is not
|
/openbmc/estoraged/src/test/erase/ |
H A D | pattern_test.cpp | 2 #include "pattern.hpp" 23 using estoraged::Pattern; 29 TEST(pattern, patternPass) in TEST() argument 41 Pattern pass(testFileName); in TEST() 50 /* This test that pattern writes the correct number of bytes even if 54 TEST(pattern, patternNotDivisible) in TEST() argument 66 Pattern pass(testFileName); in TEST() 74 TEST(pattern, patternsDontMatch) in TEST() argument 80 Pattern pass(testFileName); in TEST() 99 TEST(pattern, shortReadWritePass) in TEST() argument [all …]
|
/openbmc/openbmc/poky/meta/conf/machine/include/microblaze/ |
H A D | arch-microblaze.inc | 22 TUNEVALID[pattern-compare] = "Enable Pattern Compare Instructions" 32 …GS .= "${@bb.utils.contains("TUNE_FEATURES", "pattern-compare", " -mxl-pattern-compare", " -mno-xl… 36 # Disable reorder for v8.30 if pattern-compare is not enabled 39 bb.utils.contains("TUNE_FEATURES", "pattern-compare", \ 46 MBPKGARCH_TUNE .= "${@bb.utils.contains("TUNE_FEATURES", "pattern-compare", "-cmp", "", d)}"
|
/openbmc/u-boot/post/drivers/ |
H A D | memory.c | 31 * pattern to the target location, write a different pattern elsewhere 69 * After writing a test pattern. a special pattern 0x0123456789ABCDEF is 72 * pattern in that byte lane when the test runs. For example, if the 74 * (for the 'a' test pattern). 90 * test pattern we use is a ulong and thus, if we tried to test lower 91 * order address bits, it wouldn't work because our pattern would 116 * verify RAM. Each test case fills a region of RAM with one pattern and 117 * then reads the region back and compares its contents with the pattern. 120 * 1a) zero pattern (0x00000000) 121 * 1b) negative pattern (0xffffffff) [all …]
|
/openbmc/u-boot/tools/binman/etype/ |
H A D | files.py | 23 - pattern: Filename pattern to match the files to include 34 self._pattern = fdt_util.GetString(self._node, 'pattern') 36 self.Raise("Missing 'pattern' property") 44 self.Raise("Pattern '%s' matched no files" % self._pattern)
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | parallels-checks.out | 4 == write pattern == 14 == write pattern to last cluster == 36 == write pattern to whole image == 39 == write another pattern to second cluster == 64 == write another pattern to the first clusters == 75 == write pattern to whole image == 78 == write another pattern to second cluster == 95 == write another pattern to the first clusters == 106 == write pattern to first cluster == 116 == write pattern to first cluster ==
|
/openbmc/u-boot/drivers/mtd/onenand/ |
H A D | onenand_bbt.c | 26 * check_short_pattern - [GENERIC] check if a pattern is in the buffer 30 * @param td search pattern descriptor 32 * Check for a pattern at the given place. Used to search bad block 34 * no optional empty check and the pattern is expected to start 43 /* Compare the pattern */ in check_short_pattern() 45 if (p[i] != td->pattern[i]) in check_short_pattern() 55 * @param bd descriptor for the good/bad block search pattern 60 * for the given good/bad block identify pattern 133 * @param bd descriptor for the good/bad block search pattern 181 * @param bd descriptor for the good/bad block search pattern [all …]
|
/openbmc/u-boot/drivers/video/meson/ |
H A D | meson_dw_hdmi.h | 84 * 3'b010=Output PRBS data; 3'b100=Output shift pattern. Default 0. 85 * Bit 11: 9 RW shift_pttn_repeat: 0=New pattern every clk cycle; 1=New pattern 86 * every 2 clk cycles; ...; 7=New pattern every 8 clk cycles. Default 0. 87 * Bit 8 RW shift_pttn_en: 1= Enable shift pattern generator; 0=Disable. 90 * Bit 2: 1 RW prbs_pttn_width: 0=idle; 1=output 8-bit pattern; 91 * 2=Output 1-bit pattern; 3=output 10-bit pattern. Default 0. 118 /* Bit 1 RW shift_tmds_clk_pttn:1=Enable shifting clk pattern,
|