Home
last modified time | relevance | path

Searched refs:nch (Results 1 – 25 of 34) sorted by relevance

12

/external/python/cpython2/Modules/
Dparsermodule.c1075 int nch = NCH(tree); in validate_repeating_list() local
1076 int res = (nch && validate_ntype(tree, ntype) in validate_repeating_list()
1082 if (is_even(nch)) in validate_repeating_list()
1083 res = validate_comma(CHILD(tree, --nch)); in validate_repeating_list()
1084 if (res && nch > 1) { in validate_repeating_list()
1086 for ( ; res && pos < nch; pos += 2) in validate_repeating_list()
1103 int nch = NCH(tree); in validate_class() local
1105 ((nch == 4) || (nch == 6) || (nch == 7))); in validate_class()
1110 && validate_colon(CHILD(tree, nch - 2)) in validate_class()
1111 && validate_suite(CHILD(tree, nch - 1))); in validate_class()
[all …]
/external/python/cpython2/Parser/
Dnode.c81 const int nch = n1->n_nchildren; in PyNode_AddChild() local
86 if (nch == INT_MAX || nch < 0) in PyNode_AddChild()
89 current_capacity = XXXROUNDUP(nch); in PyNode_AddChild()
90 required_capacity = XXXROUNDUP(nch + 1); in PyNode_AddChild()
/external/python/cpython3/Parser/
Dnode.c81 const int nch = n1->n_nchildren; in PyNode_AddChild() local
86 if (nch == INT_MAX || nch < 0) in PyNode_AddChild()
89 current_capacity = XXXROUNDUP(nch); in PyNode_AddChild()
90 required_capacity = XXXROUNDUP(nch + 1); in PyNode_AddChild()
/external/libldac/src/
DldacBT_internal.c220 DECLFUNC void ldacBT_prepare_pcm_encode( void *pbuff, char **ap_pcm, int nsmpl, int nch, argument
224 if( nch == 2 ){
282 else if( nch == 1 ){
511 DECLFUNC int ldacBT_get_eqmid_from_frmlen( int frmlen, int nch, int flgFrmHdr, int pktType ) argument
519 if( nch > 0 ){
520 frmlen /= nch;
DldacBT_internal.h199 DECLFUNC void ldacBT_prepare_pcm_encode( void *pbuff, char **ap_pcm, int nsmpl, int nch,
205 DECLFUNC int ldacBT_get_eqmid_from_frmlen( int frmlen, int nch, int flgFrmHdr, int pktType );
/external/python/cpython2/Lib/plat-mac/
Dvideoreader.py158 nch = self.audiodescr['numChannels']
159 if nch == 1:
161 elif nch == 2:
164 channels = map(lambda x: str(x+1), range(nch))
172 blocksize = (bps/8)*nch
/external/adhd/cras/src/tests/
Dcras_test_client.c1511 int nch; in main() local
1516 nch = atoi(s); in main()
1517 coeff = (float *)calloc(nch * nch, in main()
1519 for (size = 0; size < nch * nch; size++) { in main()
1525 cras_client_config_global_remix(client, nch, coeff); in main()
/external/icu/icu4c/source/data/locales/
Dlag.txt147 "Mʉʉnchɨ",
161 "Kʉmʉʉnchɨ",
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dtk-t-tk-Cyrl-m0-bgn.txt352 үпҗүнчилиге üpҗünchиlиge
578 үпҗүнчиликлер üpҗünchиlиkler
643 мүмкинчиликлериң mümkиnchиlиklerиng
647 мүмкинчиликлерине mümkиnchиlиklerиne
Dru-t-ru-Latn-m0-bgn.txt20 Yyënchëping Йёнчёпинг
Dru-Latn-t-ru-m0-bgn.txt19 Йёнчёпинг Yyënchëping
Dky-Latn-t-ky-m0-bgn.txt647 мүмкүнчүлүктөр mümkünchülüktör
682 өзүнчө özünchö
Dhy-Latn-t-hy-m0-bgn.txt700 ոչնչացմանը։ voch’nch’ats’many.
/external/libxaac/decoder/
Dixheaacd_drc_freq_dec.c574 WORD32 nch, UWORD8 *b_channel_on) { in ixheaacd_drc_excluded_channels() argument
582 if (ich < nch) { in ixheaacd_drc_excluded_channels()
591 if (ich < nch) { in ixheaacd_drc_excluded_channels()
/external/webrtc/webrtc/common_audio/
Dfft4g.c679 size_t j, nch; in makect() local
684 nch = nc >> 1; in makect()
685 delta = atanf(1.0f) / nch; in makect()
686 c[0] = (float)cos(delta * nch); in makect()
687 c[nch] = 0.5f * c[0]; in makect()
688 for (j = 1; j < nch; j++) { in makect()
/external/python/cpython3/Python/
Dast.c2453 int i, nch, start = 0; in ast_for_atom_expr() local
2457 nch = NCH(n); in ast_for_atom_expr()
2461 assert(nch > 1); in ast_for_atom_expr()
2467 if (nch == 1) in ast_for_atom_expr()
2469 if (start && nch == 2) { in ast_for_atom_expr()
2473 for (i = start + 1; i < nch; i++) { in ast_for_atom_expr()
3787 const int nch = NCH(n); in ast_for_try_stmt() local
3788 int n_except = (nch - 3)/3; in ast_for_try_stmt()
3797 if (TYPE(CHILD(n, nch - 3)) == NAME) { in ast_for_try_stmt()
3798 if (strcmp(STR(CHILD(n, nch - 3)), "finally") == 0) { in ast_for_try_stmt()
[all …]
/external/python/cpython2/Python/
Dast.c3066 const int nch = NCH(n); in ast_for_try_stmt() local
3067 int n_except = (nch - 3)/3; in ast_for_try_stmt()
3076 if (TYPE(CHILD(n, nch - 3)) == NAME) { in ast_for_try_stmt()
3077 if (strcmp(STR(CHILD(n, nch - 3)), "finally") == 0) { in ast_for_try_stmt()
3078 if (nch >= 9 && TYPE(CHILD(n, nch - 6)) == NAME) { in ast_for_try_stmt()
3082 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
3088 finally = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3096 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3102 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()
/external/python/cpython3/Modules/
Dparsermodule.c647 int nch = NCH(tree); in validate_node() local
663 for (pos = 0; pos < nch; ++pos) { in validate_node()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregcomp.c100 static int nch(struct parse *, cset *);
737 if (nch(p, cs) == 1) { /* optimize singleton sets */ in p_bracket()
1196 nch(struct parse *p, cset *cs) in nch() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Dregcomp.c227 static int nch(struct parse *, cset *);
864 if (nch(p, cs) == 1) { /* optimize singleton sets */ in p_bracket()
1323 nch(struct parse *p, cset *cs) in nch() function
/external/llvm/lib/Support/
Dregcomp.c100 static int nch(struct parse *, cset *);
737 if (nch(p, cs) == 1) { /* optimize singleton sets */ in p_bracket()
1196 nch(struct parse *p, cset *cs) in nch() function
/external/swiftshader/third_party/LLVM/lib/Support/
Dregcomp.c92 static int nch(struct parse *, cset *);
701 if (nch(p, cs) == 1) { /* optimize singleton sets */ in p_bracket()
1158 nch(struct parse *p, cset *cs) in nch() function
/external/icu/icu4c/source/data/translit/
Dko_ko_Latn_BGN.txt95 ᆫᄎ → nch $aspirate ; # HANGUL JONGSEONG NIEUN + CHOSEONG CHIEUCH
/external/icu/icu4c/source/data/misc/
DlikelySubtags.txt871 nch{"nch_Latn_MX"}
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dlanguage_script_raw.txt550 nch Central Huasteca Nahuatl primary Latn Latin

12