HomeSort by relevance Sort by last modified time
    Searched refs:pf (Results 26 - 50 of 416) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/vold/
ScryptParameters.cpp 22 bool parse_scrypt_parameters(const char* paramstr, int *Nf, int *rf, int *pf) {
48 *Nf = params[0]; *rf = params[1]; *pf = params[2];
  /external/selinux/policycoreutils/semodule_link/
semodule_link.c 39 struct sepol_policy_file *pf = NULL; local
46 if (sepol_policy_file_create(&pf)) {
56 sepol_policy_file_set_fp(pf, fp);
60 ret = sepol_module_package_read(p, pf, 0);
67 sepol_policy_file_free(pf);
71 sepol_policy_file_free(pf);
83 struct sepol_policy_file *pf; local
157 if (sepol_policy_file_create(&pf)) {
161 sepol_policy_file_set_fp(pf, outfile);
162 if (sepol_module_package_write(base, pf)) {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatUnitTest.java 128 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, oddAndEven, local
130 assertEquals("should use first occurrence of the 'odd' keyword", "foo", pf.format(1));
131 pf.applyPattern("odd{foo} other{bar} other{foobar}");
132 assertEquals("should use first occurrence of the 'other' keyword", "bar", pf.format(2));
134 pf.applyPattern("other{foo} odd{bar} other{foobar}");
135 assertEquals("should use first occurrence of the 'other' keyword", "foo", pf.format(2));
147 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, oddAndEven, "otto{foo} other{bar}"); local
148 assertEquals("should ignore unknown keywords", "bar", pf.format(1));
294 PluralFormat pf = new PluralFormat(pat); local
295 assertEquals("should not trim() the pattern", pat, pf.toPattern())
332 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, pluralStyle); local
368 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, PluralType.ORDINAL, pattern); local
388 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, "one{one meter}other{# meters}"); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatUnitTest.java 124 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, oddAndEven, local
126 assertEquals("should use first occurrence of the 'odd' keyword", "foo", pf.format(1));
127 pf.applyPattern("odd{foo} other{bar} other{foobar}");
128 assertEquals("should use first occurrence of the 'other' keyword", "bar", pf.format(2));
130 pf.applyPattern("other{foo} odd{bar} other{foobar}");
131 assertEquals("should use first occurrence of the 'other' keyword", "foo", pf.format(2));
143 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, oddAndEven, "otto{foo} other{bar}"); local
144 assertEquals("should ignore unknown keywords", "bar", pf.format(1));
290 PluralFormat pf = new PluralFormat(pat); local
291 assertEquals("should not trim() the pattern", pat, pf.toPattern())
328 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, pluralStyle); local
364 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, PluralType.ORDINAL, pattern); local
384 PluralFormat pf = new PluralFormat(ULocale.ENGLISH, "one{one meter}other{# meters}"); local
    [all...]
  /external/clang/test/Sema/
fp16-sema.c 7 extern void (*pf) (__fp16); // expected-error {{parameters cannot have __fp16 type; did you forget * ?}}
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6703y.go 19 func pf() *T { func
23 var x = pf().pm // ERROR "initialization loop|depends upon itself"
issue6703z.go 19 func pf() *T { func
23 var x = pf().pm() // ERROR "initialization loop|depends upon itself"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6703y.go 19 func pf() *T { func
23 var x = pf().pm // ERROR "initialization loop|depends upon itself"
issue6703z.go 19 func pf() *T { func
23 var x = pf().pm() // ERROR "initialization loop|depends upon itself"
  /system/sepolicy/tools/sepolicy-analyze/
utils.h 14 int load_policy(char *filename, policydb_t * policydb, struct policy_file *pf);
  /external/curl/lib/
hostip6.c 171 int pf; local
181 pf = PF_INET;
184 pf = PF_INET6;
187 pf = PF_UNSPEC;
191 if((pf != PF_INET) && !Curl_ipv6works())
193 pf = PF_INET;
196 hints.ai_family = pf;
  /external/regex-re2/re2/
set.cc 34 Regexp::ParseFlags pf = static_cast<Regexp::ParseFlags>( local
38 re2::Regexp* re = Regexp::Parse(pattern, pf, &status);
49 re2::Regexp* m = re2::Regexp::HaveMatch(n, pf);
57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
63 re = re2::Regexp::Concat(sub, 2, pf);
76 Regexp::ParseFlags pf = static_cast<Regexp::ParseFlags>( local
79 re_.size(), pf);
  /external/libnl/lib/netfilter/
queue.c 65 cmd.pf = htons(family);
79 int nfnl_queue_build_pf_bind(uint8_t pf, struct nl_msg **result)
81 return build_queue_cmd_request(pf, 0, NFQNL_CFG_CMD_PF_BIND, result);
84 int nfnl_queue_pf_bind(struct nl_sock *nlh, uint8_t pf)
89 if ((err = nfnl_queue_build_pf_bind(pf, &msg)) < 0)
95 int nfnl_queue_build_pf_unbind(uint8_t pf, struct nl_msg **result)
97 return build_queue_cmd_request(pf, 0, NFQNL_CFG_CMD_PF_UNBIND, result);
100 int nfnl_queue_pf_unbind(struct nl_sock *nlh, uint8_t pf)
105 if ((err = nfnl_queue_build_pf_unbind(pf, &msg)) < 0)
169 cmd.pf = 0
    [all...]
log.c 69 int nfnl_log_build_pf_bind(uint8_t pf, struct nl_msg **result)
71 return build_log_cmd_request(pf, 0, NFULNL_CFG_CMD_PF_BIND, result);
74 int nfnl_log_pf_bind(struct nl_sock *nlh, uint8_t pf)
79 if ((err = nfnl_log_build_pf_bind(pf, &msg)) < 0)
85 int nfnl_log_build_pf_unbind(uint8_t pf, struct nl_msg **result)
87 return build_log_cmd_request(pf, 0, NFULNL_CFG_CMD_PF_UNBIND, result);
90 int nfnl_log_pf_unbind(struct nl_sock *nlh, uint8_t pf)
95 if ((err = nfnl_log_build_pf_unbind(pf, &msg)) < 0)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Timer.java 63 return pf;
77 return nf.format(getDuration()/iterations) + "\tns\t" + pf.format((double)getDuration()/other - 1D) + "";
81 private DecimalFormat pf = (DecimalFormat) NumberFormat.getPercentInstance(ULocale.ENGLISH); field in class:Timer
84 pf.setMaximumFractionDigits(1);
85 pf.setPositivePrefix("+");
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 62 return pf;
76 return nf.format(getDuration()/iterations) + "\tns\t" + pf.format((double)getDuration()/other - 1D) + "";
80 private DecimalFormat pf = (DecimalFormat) NumberFormat.getPercentInstance(ULocale.ENGLISH); field in class:Timer
83 pf.setMaximumFractionDigits(1);
84 pf.setPositivePrefix("+");
  /external/valgrind/none/tests/x86/
aad_aam.c 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; local
40 pf=!!(flags&0x4);
47 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
48 // flags,cf,pf,af,zf,sf,of);
53 if (pf != parity(out&0xff)) {
54 printf("Error with aam (pf)!\n");
87 pf=!!(flags&0x4);
94 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
95 // flags,cf,pf,af,zf,sf,of);
100 if (pf != parity(out&0xff))
    [all...]
  /external/v8/tools/testrunner/server/
daemon.py 87 pf = file(self.pidfile, 'r')
88 pid = int(pf.read().strip())
89 pf.close()
108 pf = file(self.pidfile, 'r')
109 pid = int(pf.read().strip())
110 pf.close()
  /frameworks/base/services/core/java/com/android/server/
PinnerService.java 114 PinnedFile pf = pinFile(filesToPin[i], 0, 0, 0); local
115 if (pf != null) {
116 mPinnedFiles.add(pf);
118 Slog.i(TAG, "Pinned file = " + pf.mFilename);
220 PinnedFile pf = pinFile(camAPK, 0, 0, MAX_CAMERA_PIN_SIZE); local
221 if (pf == null) {
226 Slog.i(TAG, "Pinned " + pf.mFilename);
228 mPinnedCameraFiles.add(pf);
252 pf = pinFile(odex, 0, 0, MAX_CAMERA_PIN_SIZE);
253 if (pf != null)
    [all...]
  /external/clang/test/SemaCXX/
function-type-qual.cpp 4 void (*pf)() const; // expected-error {{pointer to function type cannot have 'const' qualifier}} variable
ptrtomember.cpp 18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}} member in class:S2
  /frameworks/rs/
rsScriptC_LibGL.cpp 49 void rsrBindTexture(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) {
51 CHECK_OBJ(pf);
52 pf->bindTexture(rsc, slot, a);
55 void rsrBindConstant(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) {
57 CHECK_OBJ(pf);
58 pf->bindAllocation(rsc, a, slot);
67 void rsrBindSampler(Context *rsc, ProgramFragment *pf, uint32_t slot, Sampler *s) {
70 pf->bindSampler(rsc, slot, s);
78 void rsrBindProgramFragment(Context *rsc, ProgramFragment *pf) {
79 CHECK_OBJ_OR_NULL(pf);
200 ProgramFragment *pf = rsc->getProgramFragment(); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/languages/
Test_ja.java 50 PeriodFormatter pf = pff.getFormatter();
52 assertEquals(null, "1\u30df\u30ea\u79d2\u524d", pf.format(p));
55 assertEquals(null, "1.001\u79d2\u524d", pf.format(p));
58 assertEquals(null, "1\u5206\u30681\u30df\u30ea\u79d2\u524d", pf.format(p));
65 PeriodFormatter pf = pff.getFormatter(); local
67 String s1 = pf.format(p);
69 String s2 = pf.format(p);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/languages/
Test_ja.java 46 PeriodFormatter pf = pff.getFormatter();
48 assertEquals(null, "1\u30df\u30ea\u79d2\u524d", pf.format(p));
51 assertEquals(null, "1.001\u79d2\u524d", pf.format(p));
54 assertEquals(null, "1\u5206\u30681\u30df\u30ea\u79d2\u524d", pf.format(p));
61 PeriodFormatter pf = pff.getFormatter(); local
63 String s1 = pf.format(p);
65 String s2 = pf.format(p);
  /external/selinux/libsepol/src/
genbools.c 152 struct policy_file pf; local
173 policy_file_init(&pf);
174 pf.type = PF_USE_MEMORY;
175 pf.data = data;
176 pf.len = len;
177 rc = policydb_write(&policydb, &pf);
213 struct policy_file pf; local
245 policy_file_init(&pf);
246 pf.type = PF_USE_MEMORY;
247 pf.data = data
    [all...]

Completed in 1775 milliseconds

12 3 4 5 6 7 8 91011>>