Home
last modified time | relevance | path

Searched refs:nf (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dpgen.c39 nfa *nf, node *n, int *pa, int *pb);
41 nfa *nf, node *n, int *pa, int *pb);
43 nfa *nf, node *n, int *pa, int *pb);
45 nfa *nf, node *n, int *pa, int *pb);
48 addnfastate(nfa *nf) in addnfastate() argument
52 nf->nf_state = (nfastate *)PyObject_REALLOC(nf->nf_state, in addnfastate()
53 sizeof(nfastate) * (nf->nf_nstates + 1)); in addnfastate()
54 if (nf->nf_state == NULL) in addnfastate()
56 st = &nf->nf_state[nf->nf_nstates++]; in addnfastate()
59 return st - nf->nf_state; in addnfastate()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dobmalloc.c983 uint nf; /* ao->nfreepools */ in PyObject_Free() local
1009 nf = ++ao->nfreepools; in PyObject_Free()
1023 if (nf == ao->ntotalpools) { in PyObject_Free()
1064 if (nf == 1) { in PyObject_Free()
1088 nf <= ao->nextarena->nfreepools) { in PyObject_Free()
1114 nf > ao->nextarena->nfreepools) { in PyObject_Free()
1130 nf <= ao->nextarena->nfreepools); in PyObject_Free()
1132 nf > ao->prevarena->nfreepools); in PyObject_Free()
/device/google/accessory/demokit/hardware/eng/shield/
Dashield_gerb274x.cam2 …nDieser CAM-Job besteht aus fünf Arbeitsschritten und erzeugt Fertigungsdaten für eine zweilagige …
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dobmalloc.c1027 uint nf; /* ao->nfreepools */ in PyObject_Free() local
1053 nf = ++ao->nfreepools; in PyObject_Free()
1067 if (nf == ao->ntotalpools) { in PyObject_Free()
1112 if (nf == 1) { in PyObject_Free()
1136 nf <= ao->nextarena->nfreepools) { in PyObject_Free()
1162 nf > ao->nextarena->nfreepools) { in PyObject_Free()
1178 nf <= ao->nextarena->nfreepools); in PyObject_Free()
1180 nf > ao->prevarena->nfreepools); in PyObject_Free()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_pep277.py133 for nf in set(['NFC', 'NFD', 'NFKC', 'NFKD']):
134 others |= set(normalize(nf, file) for file in files)
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dstrtod.c94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; in strtod() local
177 for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) in strtod()
196 nf += nz; in strtod()
206 nf += nz; in strtod()
308 e1 = e -= nf; in strtod()
Dstrtodg.c314 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; in strtodg() local
374 for(decpt = nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) in strtodg()
393 nf += nz; in strtodg()
403 nf += nz; in strtodg()
494 e1 = e -= nf; in strtodg()
/device/generic/goldfish/fingerprint/
Dfingerprint.c124 int nf = fwrite(&listener->fingerid[idx], sizeof(uint64_t), 1, fp); in saveFingerprint() local
212 int nf = fread(listener->fingerid, MAX_NUM_FINGERS * sizeof(uint64_t), 1, in loadFingerprints() local
214 if (ns != 1 || nf != 1) in loadFingerprints()
215 ALOGW("Corrupt emulator fingerprints storage (read %d+%db)", ns, nf); in loadFingerprints()