Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 86) sorted by relevance

1234

/rk3399_rockchip-uboot/lib/
H A Dlz4.c112 const BYTE* match; in LZ4_decompress_generic() local
153 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic()
154 …if ((checkOffset) && (unlikely(match < lowLimit))) goto _output_error; /* Error : offset outside… in LZ4_decompress_generic()
172 if ((dict==usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()
176 if (length <= (size_t)(lowPrefix-match)) in LZ4_decompress_generic()
179 match = dictEnd - (lowPrefix-match); in LZ4_decompress_generic()
180 memmove(op, match, length); op += length; in LZ4_decompress_generic()
185 size_t copySize = (size_t)(lowPrefix-match); in LZ4_decompress_generic()
206 if (unlikely((op-match)<8)) in LZ4_decompress_generic()
208 const size_t dec64 = dec64table[op-match]; in LZ4_decompress_generic()
[all …]
H A Dslre.c436 static int match(const struct slre *, int,
446 while (match(r, pc + 2, s, len, ofs, NULL)) { in loop_greedy()
448 if (match(r, pc + r->code[pc + 1], s, len, ofs, NULL)) in loop_greedy()
461 while (match(r, pc + 2, s, len, ofs, NULL)) { in loop_non_greedy()
463 if (match(r, pc + r->code[pc + 1], s, len, ofs, NULL)) in loop_non_greedy()
503 match(const struct slre *r, int pc, const char *s, int len, in match() function
516 res = match(r, pc + 3, s, len, ofs, caps); in match()
519 res = match(r, pc + r->code[pc + 1], in match()
537 if (!match(r, pc + 2, s, len, ofs, caps)) in match()
552 res = match(r, pc + 2, s, len, ofs, caps); in match()
[all …]
/rk3399_rockchip-uboot/tools/patman/
H A Dcheckpatch.py92 match = re_stats_full.match(line)
93 if not match:
94 match = re_stats.match(line)
95 if match:
96 result.errors = int(match.group(1))
97 result.warnings = int(match.group(2))
98 if len(match.groups()) == 4:
99 result.checks = int(match.group(3))
100 result.lines = int(match.group(4))
102 result.lines = int(match.group(3))
[all …]
H A Dpatchstream.py152 commit_match = re_commit.match(line) if self.is_log else None
159 series_tag_match = re_series_tag.match(line)
160 commit_tag_match = re_commit_tag.match(line)
161 cover_match = re_cover.match(line)
162 cover_cc_match = re_cover_cc.match(line)
163 signoff_match = re_signoff.match(line)
166 tag_match = re_tag.match(line)
231 elif re_remove.match(line) and not commit_tag_match:
312 m = re_space_before_tab.match(line)
337 if not re_allowed_after_test.match(line):
[all …]
H A Dpatman.py110 match = re_line.match(line) variable
111 if match and match.group(1) == args[0]:
112 for cc in match.group(2).split(', '):
H A Dpatman110 match = re_line.match(line) variable
111 if match and match.group(1) == args[0]:
112 for cc in match.group(2).split(', '):
/rk3399_rockchip-uboot/drivers/core/
H A Ddevres.c100 dr_match_t match, void *match_data) in devres_find() argument
107 if (match && !match(dev, dr->data, match_data)) in devres_find()
116 dr_match_t match, void *match_data) in devres_get() argument
121 res = devres_find(dev, new_dr->release, match, match_data); in devres_get()
133 dr_match_t match, void *match_data) in devres_remove() argument
137 res = devres_find(dev, release, match, match_data); in devres_remove()
149 dr_match_t match, void *match_data) in devres_destroy() argument
153 res = devres_remove(dev, release, match, match_data); in devres_destroy()
162 dr_match_t match, void *match_data) in devres_release() argument
166 res = devres_remove(dev, release, match, match_data); in devres_release()
H A Dof_addr.c41 int (*match)(struct device_node *parent); member
101 .match = NULL,
114 if (!of_busses[i].match || of_busses[i].match(np)) in of_match_bus()
/rk3399_rockchip-uboot/cmd/
H A Dethsw.c633 int (*match)(enum ethsw_keyword_id key_id, int argc, char *const argv[], member
638 .match = &keyword_match_gen,
641 .match = &keyword_match_gen,
644 .match = &keyword_match_port
647 .match = &keyword_match_gen,
650 .match = &keyword_match_gen,
653 .match = &keyword_match_gen,
656 .match = &keyword_match_gen,
659 .match = &keyword_match_gen,
662 .match = &keyword_match_gen,
[all …]
H A Dlegacy_led.c91 int i, match = 0; in do_legacy_led() local
107 match = 1; in do_legacy_led()
143 if (!match) { in do_legacy_led()
/rk3399_rockchip-uboot/scripts/
H A Dmkbootimg150 match = re.search(r'^(\d{1,3})(?:\.(\d{1,3})(?:\.(\d{1,3}))?)?', x)
151 if match:
152 a = int(match.group(1))
154 if match.lastindex >= 2:
155 b = int(match.group(2))
156 if match.lastindex == 3:
157 c = int(match.group(3))
166 match = re.search(r'^(\d{4})-(\d{2})-(\d{2})', x)
167 if match:
168 y = int(match.group(1)) - 2000
[all …]
/rk3399_rockchip-uboot/env/
H A Dattr.c219 const char *match = strstr(cur_searched, search_for); in reverse_name_search() local
224 if (match == NULL) in reverse_name_search()
227 prevch = match - 1; in reverse_name_search()
228 nextch = match + strlen(search_for); in reverse_name_search()
237 cur_searched = match + 1; in reverse_name_search()
239 if (match != searched && in reverse_name_search()
249 *result = match; in reverse_name_search()
H A Dcommon.c310 ENTRY *match; in env_complete() local
317 while ((idx = hmatch_r(var, idx, &match, &env_htab))) { in env_complete()
318 int vallen = strlen(match->key) + 1; in env_complete()
324 memcpy(buf, match->key, vallen); in env_complete()
/rk3399_rockchip-uboot/lib/zlib/
H A Ddeflate.c96 local void check_match OF((deflate_state *s, IPos start, IPos match,
1067 register Bytef *match; /* matched string */ local
1110 match = s->window + cur_match;
1124 if (*(ushf*)(match+best_len-1) != scan_end ||
1125 *(ushf*)match != scan_start) continue;
1136 Assert(scan[2] == match[2], "scan[2]?");
1137 scan++, match++;
1139 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1140 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1141 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
[all …]
/rk3399_rockchip-uboot/include/dm/
H A Ddevice.h695 dr_match_t match, void *match_data);
711 dr_match_t match, void *match_data);
728 dr_match_t match, void *match_data);
748 dr_match_t match, void *match_data);
765 dr_match_t match, void *match_data);
824 dr_match_t match, void *match_data) in devres_find() argument
830 dr_match_t match, void *match_data) in devres_get() argument
836 dr_match_t match, void *match_data) in devres_remove() argument
842 dr_match_t match, void *match_data) in devres_destroy() argument
848 dr_match_t match, void *match_data) in devres_release() argument
/rk3399_rockchip-uboot/tools/
H A Dgenboardscfg.py189 params['target'], match, rear = defconfig.partition('_defconfig')
190 assert match and not rear, '%s : invalid defconfig' % defconfig
344 front, match, rear = f.partition('configs/')
345 if not front and match:
346 front, match, rear = rear.rpartition('_defconfig')
347 if match and not rear:
H A Dmicrocode-tool.py61 m_date = re_date.match(line)
62 m_license = re_license.match(line)
63 m_name = re_name.match(line)
H A Dmicrocode-tool61 m_date = re_date.match(line)
62 m_license = re_license.match(line)
63 m_name = re_name.match(line)
/rk3399_rockchip-uboot/api/
H A Dapi.c500 ENTRY *match, search; in API_env_enum() local
517 i = hsearch_r(search, FIND, &match, &env_htab, 0); in API_env_enum()
525 i = hmatch_r("", i, &match, &env_htab); in API_env_enum()
528 buflen = strlen(match->key) + strlen(match->data) + 2; in API_env_enum()
530 snprintf(var, buflen, "%s=%s", match->key, match->data); in API_env_enum()
/rk3399_rockchip-uboot/include/
H A Dfsl_lpuart.h18 u32 match; member
29 u32 match; member
/rk3399_rockchip-uboot/test/py/tests/
H A Dtest_fit.py222 def find_matching(text, match): argument
257 pos = line.find(match)
259 return line[:pos] + line[pos + len(match):]
/rk3399_rockchip-uboot/doc/
H A Dbounces2 # bounce. Addresses are listed one per line and need to match the author
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/armada100/
H A Dtimer.c20 u32 match[9]; /* Timer match registers */ member
114 writel(TIMER_LOAD_VAL, &armd1timers->match[MATCH_CMP(0)]); in timer_init()
/rk3399_rockchip-uboot/lib/lzo/
H A Dlzo1x_decompress.c169 goto match; in lzo1x_decompress_safe()
212 goto match; in lzo1x_decompress_safe()
229 match: in lzo1x_decompress_safe()
/rk3399_rockchip-uboot/fs/jffs2/
H A Dcompr_lzo.c184 goto match; in lzo1x_decompress()
240 goto match; in lzo1x_decompress()
255 match: in lzo1x_decompress()

1234