Searched defs:ng (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp5.cpp55 int ng; // expected-note 6{{here}} member in namespace:PotentialConstant
56 constexpr int BinaryOp1(int n) { return n + ng; } // expected-error {{never produces}} expected-note {{read}}
57 constexpr int BinaryOp2(int n) { return ng + n; } // expected-error {{never produces}} expected-note {{read}}
64 constexpr int FunctionArgs(int a) { return Add(a, ng, a); } // expected-error {{never produces}} expected-note {{read}}
67 constexpr S InitList(int a) { return { a, ng }; }; // expected-error {{never produces}} expected-note {{read}}
68 constexpr S InitList1a(int a) { return S{ a, ng }; }; // expected-error {{never produces}} expected-note {{read}}
69 constexpr S InitList2(int a) { return { a, a, { ng } }; }; // expected-error {{never produces}} expected-note {{read}}
70 constexpr S InitList3(int a) { return a ? S{ a, a } : S{ a, ng }; }; // ok
78 constexpr int Conditional1(bool b, int n) { return b ? n : ng; } // ok
79 constexpr int Conditional2(bool b, int n) { return b ? n * ng
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_ident.c1426 int ng = 0; local
1436 ng++;
1445 ng++;
1454 ng++;
1459 ng++;
1468 if (ng) {
/external/selinux/libselinux/src/
H A Dseusers.c115 int i, ng = 0; local
143 if (getgrouplist(name, gid, NULL, &ng) < 0) {
144 if (ng == 0)
146 groups = calloc(ng, sizeof(*groups));
149 if (getgrouplist(name, gid, groups, &ng) < 0)
152 /* WTF? ng was 0 and we didn't fail? Are we in 0 groups? */
156 for (i = 0; i < ng; i++) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_sbcs.java284 NGramsPlusLang(String la, int [] ng) { argument
286 fNGrams = ng;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp244 int *d0, *d1, *d2, *r, *g, *b, *nr, *ng, *nb; local
264 ng = g + maxw;
272 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
273 ++ny; ++nr; ++ng; ++nb;
274 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
275 ++ny; ++nr; ++ng; ++nb; ++cb; ++cr;
281 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
282 ++ny; ++nr; ++ng; ++nb; ++cb; ++cr;
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_GeneralDecoder.cpp3044 FX_DWORD ng, mg; local
3057 for(ng = 0; ng < HGW; ng++) {
3058 x = (HGX + mg * HRY + ng * HRX) >> 8;
3059 y = (HGY + mg * HRX - ng * HRY) >> 8;
3062 HSKIP->setPixel(ng, mg, 1);
3064 HSKIP->setPixel(ng, mg, 0);
3086 for(ng = 0; ng < HG
3112 FX_DWORD ng, mg; local
[all...]
/external/pcre/dist/
H A Dpcre_compile.c6962 named_group *ng; local
6994 ng = cd->named_groups;
6995 for (i = 0; i < cd->names_found; i++, ng++)
6997 if (namelen == ng->length &&
6998 STRNCMP_UC_UC(name, ng->name, namelen) == 0)
7000 if (ng->number == number) break;
7008 else if (ng->number == number)
7081 named_group *ng; local
7104 ng = cd->named_groups;
7105 for (i = 0; i < cd->names_found; i++, ng
9198 named_group *ng = cd->named_groups; local
[all...]

Completed in 391 milliseconds