Searched refs:filt (Results 1 - 25 of 28) sorted by relevance

12

/external/v8/tools/
H A Dmac-nm4 # names demangling, so we're piping its output to c++filt(1) tool which does it.
5 # But c++filt(1) comes with XCode (as a part of GNU binutils), so it doesn't
14 if [ "`which c++filt`" == "" ]; then
17 nm "$@" | c++filt -p -i
H A Dpresubmit.py258 filt = '-,' + ",".join(['+' + n for n in ENABLED_LINT_RULES])
259 command = [sys.executable, 'cpplint.py', '--filter', filt]
266 command = [sys.executable, cpplint, '--filter', filt]
/external/ltrace/testsuite/ltrace.main/
H A Dfilters.exp29 set filt [ltraceCompile filt$ext $libfilt1 $libfilt2 [ltraceSource c {
34 ltraceMatch [ltraceRun -e* $filt] {
35 {{filt(\.pie)?->func1} == 1}
42 ltraceMatch1 [ltraceRun $filt] \
45 ltraceMatch1 [ltraceRun -e@MAIN $filt] \
46 {filt(\.pie)?->func1\(.*\)} == 1
48 ltraceMatch1 [ltraceRun -e@libfilt1.so $filt] \
51 ltraceMatch1 [ltraceRun -e@libfilt2.so $filt] \
54 ltraceMatch [ltraceRun -e@libfilt* $filt] {
[all...]
/external/ltrace/
H A Dfilter.h63 void filter_init(struct filter *filt);
64 void filter_destroy(struct filter *filt);
74 void filter_add_rule(struct filter *filt, struct filter_rule *rule);
91 int filter_matches_library(struct filter *filt, struct library *lib);
95 int filter_matches_symbol(struct filter *filt, const char *sym_name,
H A Dfilter.c31 filter_init(struct filter *filt) argument
33 filt->rules = NULL;
34 filt->next = NULL;
38 filter_destroy(struct filter *filt) argument
41 for (it = filt->rules; it != NULL; ) {
67 filter_add_rule(struct filter *filt, struct filter_rule *rule) argument
70 for (rulep = &filt->rules; *rulep != NULL; rulep = &(*rulep)->next)
145 filter_matches_library(struct filter *filt, struct library *lib) argument
147 if (filt == NULL)
150 for (; filt !
165 filter_matches_symbol(struct filter *filt, const char *sym_name, struct library *lib) argument
[all...]
H A Doptions.c218 add_filter_rule(struct filter *filt, const char *expr, argument
257 filter_add_rule(filt, rule);
282 parse_filter(struct filter *filt, char *expr, int operators) argument
373 add_filter_rule(filt, expr, this_type,
384 struct filter *filt = malloc(sizeof(*filt)); local
385 if (filt == NULL) {
391 filter_init(filt);
392 if (parse_filter(filt, expr, operators) < 0) {
394 free(filt);
[all...]
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_loopfilter_intrin_avx2.c92 __m128i filt; local
98 filt = _mm_and_si128(_mm_subs_epi8(qs1ps1, qs1), hev);
100 filt = _mm_adds_epi8(filt, work_a);
101 filt = _mm_adds_epi8(filt, work_a);
102 filt = _mm_adds_epi8(filt, work_a);
104 filt = _mm_and_si128(filt, mas
473 __m128i filt; local
[all...]
H A Dvp9_loopfilter_intrin_sse2.c91 __m128i filt; local
97 filt = _mm_and_si128(_mm_subs_epi8(qs1ps1, qs1), hev);
99 filt = _mm_adds_epi8(filt, work_a);
100 filt = _mm_adds_epi8(filt, work_a);
101 filt = _mm_adds_epi8(filt, work_a);
103 filt = _mm_and_si128(filt, mas
467 __m128i filt; local
1004 __m128i filt; local
1245 __m128i filt; local
1416 __m128i filt; local
[all...]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_state.h42 unsigned filt; member in struct:nv30_sampler_state
53 unsigned filt; member in struct:nv30_sampler_view
H A Dnv30_texture.c146 so->filt = filter_mode(cso) | 0x00002000;
177 so->filt |= (int)(cso->lod_bias * 256.0) & 0x1fff;
238 so->filt = fmt->filter;
261 so->filt |= NV30_3D_TEX_FILTER_MIN_NEAREST |
H A Dnv30_fragtex.c53 u32 filter = sv->filt | (ss->filt & sv->filt_mask);
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-timechart.c826 struct process_filter *filt = malloc(sizeof(*filt)); local
828 if (!filt)
831 filt->name = strdup(string);
832 filt->pid = pid;
833 filt->next = process_filter;
835 process_filter = filt;
840 struct process_filter *filt; local
844 filt = process_filter;
845 while (filt) {
[all...]
/external/openfst/src/include/fst/
H A Dintersect.h41 F *filt = 0, T *sttable= 0)
42 : ComposeFstOptions<A, M, F, T>(opts, mat1, mat2, filt, sttable) { }
H A Ddifference.h42 F *filt = 0, T *sttable= 0)
43 : ComposeFstOptions<A, M, F, T>(mat1, mat2, filt, sttable) { }
H A Dshortest-distance.h56 ShortestDistanceOptions(Queue *q, ArcFilter filt, StateId src = kNoStateId, argument
58 : state_queue(q), arc_filter(filt), source(src), delta(d),
H A Dcompose.h60 F *filt = 0, T *sttable= 0)
62 filter(filt), state_table(sttable) {}
91 F *filt = 0, T *sttable= 0)
93 filter(filt), state_table(sttable) {}
H A Dshortest-path.h56 ShortestPathOptions(Queue *q, ArcFilter filt, size_t n = 1, bool u = false, argument
60 : ShortestDistanceOptions<Arc, Queue, ArcFilter>(q, filt, kNoStateId, d),
H A Ddeterminize.h339 F *filt = 0,
342 filter(filt), state_table(table) {}
345 F *filt = 0, T *table = 0)
346 : delta(del), subsequential_label(lab), filter(filt),
/external/iputils/
H A Dping.c471 struct icmp_filter filt; local
472 filt.data = ~((1<<ICMP_SOURCE_QUENCH)|
478 if (setsockopt(icmp_sock, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1)
682 struct icmp_filter filt; local
685 filt.data = ~((1<<ICMP_SOURCE_QUENCH)|
688 if (setsockopt(icmp_sock, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1)
/external/dhcpcd/
H A Dipv6rs.c110 struct icmp6_filter filt; local
132 ICMP6_FILTER_SETBLOCKALL(&filt);
133 ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
135 &filt, sizeof(filt)) == -1)
/external/icu/icu4c/source/test/cintltst/
H A Dutransts.c491 UChar filt[128]; local
517 /*u_uastrcpy(filt, DATA[i]);*/
518 u_charsToUChars(DATA[i], filt, (int32_t)strlen(DATA[i])+1);
519 utrans_setFilter(hex, filt, -1, &status);
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_atheros.c919 struct ieee80211req_set_filter filt; local
922 filt.app_filterype = 0;
924 filt.app_filterype |= IEEE80211_FILTER_TYPE_PROBE_REQ;
927 filt.app_filterype |= (IEEE80211_FILTER_TYPE_ASSOC_REQ |
932 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
935 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
937 if (filt.app_filterype) {
938 ret = set80211priv(drv, IEEE80211_IOCTL_FILTERFRAME, &filt,
955 struct ieee80211req_set_filter filt; local
956 filt
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_atheros.c919 struct ieee80211req_set_filter filt; local
922 filt.app_filterype = 0;
924 filt.app_filterype |= IEEE80211_FILTER_TYPE_PROBE_REQ;
927 filt.app_filterype |= (IEEE80211_FILTER_TYPE_ASSOC_REQ |
932 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
935 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
937 if (filt.app_filterype) {
938 ret = set80211priv(drv, IEEE80211_IOCTL_FILTERFRAME, &filt,
955 struct ieee80211req_set_filter filt; local
956 filt
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_atheros.c919 struct ieee80211req_set_filter filt; local
922 filt.app_filterype = 0;
924 filt.app_filterype |= IEEE80211_FILTER_TYPE_PROBE_REQ;
927 filt.app_filterype |= (IEEE80211_FILTER_TYPE_ASSOC_REQ |
932 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
935 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION;
937 if (filt.app_filterype) {
938 ret = set80211priv(drv, IEEE80211_IOCTL_FILTERFRAME, &filt,
955 struct ieee80211req_set_filter filt; local
956 filt
[all...]
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py597 for filt in filters.split(','):
598 clean_filt = filt.strip()
601 for filt in self.filters:
602 if not (filt.startswith('+') or filt.startswith('-')):
604 ' (%s does not)' % filt)

Completed in 667 milliseconds

12