/external/v8/tools/ |
H A D | mac-nm | 4 # 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 D | presubmit.py | 202 filt = '-,' + ",".join(['+' + n for n in ENABLED_LINT_RULES]) 203 command = ['cpplint.py', '--filter', filt] + join(files) 206 command = ['python', local_cpplint, '--filter', filt] + join(files)
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | shortest-distance.h | 42 ShortestDistanceOptions(Queue *q, ArcFilter filt, StateId src = kNoStateId, argument 44 : state_queue(q), arc_filter(filt), source(src), delta(d) {}
|
H A D | compose.h | 212 : state_id1(s1), state_id2(s2), filt(f) {} 215 int filt; // epsilon filter state member in struct:fst::ComposeStateTable::StateTuple 237 x.filt == y.filt; 250 x.filt * kPrime1); 287 static const int filt = 0; // 'fake' epsilon filter - only needed member in struct:fst::StringDetComposeStateTable::StateTuple 456 int f = tuple.filt;
|
H A D | shortest-path.h | 42 ShortestPathOptions(Queue *q, ArcFilter filt, size_t n = 1, bool u = false, argument 44 : ShortestDistanceOptions<Arc, Queue, ArcFilter>(q, filt, kNoStateId, d),
|
/external/chromium/third_party/icu/source/test/cintltst/ |
H A D | utransts.c | 488 UChar filt[128]; local 514 /*u_uastrcpy(filt, DATA[i]);*/ 515 u_charsToUChars(DATA[i], filt, (int32_t)strlen(DATA[i])+1); 516 utrans_setFilter(hex, filt, -1, &status);
|
/external/icu4c/test/cintltst/ |
H A D | utransts.c | 488 UChar filt[128]; local 514 /*u_uastrcpy(filt, DATA[i]);*/ 515 u_charsToUChars(DATA[i], filt, (int32_t)strlen(DATA[i])+1); 516 utrans_setFilter(hex, filt, -1, &status);
|
/external/ping/ |
H A D | ping.c | 1029 struct icmp_filter filt; local 1032 filt.data = ~((1<<ICMP_SOURCE_QUENCH)| 1035 if (setsockopt(icmp_sock, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1) 1934 struct icmp_filter filt; local 1935 filt.data = ~((1<<ICMP_SOURCE_QUENCH)| 1941 if (setsockopt(icmp_sock, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1)
|
/external/speex/libspeex/ |
H A D | mdf.c | 1264 spx_int32_t *filt = (spx_int32_t *) ptr; local 1276 filt[j*n+i] = PSHR32(MULT16_16(32767,st->wtmp[i]), WEIGHT_SHIFT-NORMALIZE_SCALEDOWN);
|