Home
last modified time | relevance | path

Searched refs:pri (Results 1 – 25 of 93) sorted by relevance

1234

/external/ipsec-tools/src/racoon/
Dplog.c97 plog_common(pri, fmt, func) in plog_common() argument
98 int pri; in plog_common()
119 if (pri < ARRAYLEN(ptab)) {
120 len = snprintf(p, reslen, "%s: ", ptab[pri].name);
141 _plog(int pri, const char *func, struct sockaddr *sa, const char *fmt, ...) in _plog() argument
146 plogv(pri, func, sa, fmt, ap); in _plog()
151 plogv(int pri, const char *func, struct sockaddr *sa, in plogv() argument
157 if (pri > loglevel) in plogv()
160 newfmt = plog_common(pri, fmt, func); in plogv()
170 if (pri < ARRAYLEN(ptab)) in plogv()
[all …]
Dproposal.c900 printsaprop(pri, pp) in printsaprop() argument
901 const int pri; in printsaprop()
907 plog(pri, LOCATION, NULL, "(null)");
912 printsaprop0(pri, p);
922 printsaprop0(pri, pp) in printsaprop0() argument
923 int pri; in printsaprop0()
932 printsaproto(pri, p);
939 printsaproto(pri, pr) in printsaproto() argument
940 const int pri; in printsaproto()
948 plog(pri, LOCATION, NULL,
[all …]
Dplog.h93 #define plog(pri, ...) \ argument
95 if ((pri) <= loglevel) \
96 _plog((pri), __VA_ARGS__); \
Dkmpstat.c189 _plog(int pri, const char *func, struct sockaddr *sa, const char *fmt, ...) in _plog() argument
199 plogdump(pri, data, len) in plogdump() argument
200 int pri; in plogdump()
/external/vboot_reference/utility/
Dtpm_init_temp_fix.c29 int pri = LOG_USER | LOG_ERR; in main() local
43 syslog(pri, "TPM selftest failed with code 0x%x\n", result); in main()
51 syslog(pri, "TPM assertpp failed with code 0x%x\n", result); in main()
57 syslog(pri, "TPM getflags failed with code 0x%x\n", result); in main()
64 syslog(pri, "TPM physical enable failed with code 0x%x\n", result); in main()
72 syslog(pri, "TPM physical activate failed with code 0x%x\n", result); in main()
/external/valgrind/VEX/priv/
Dhost_generic_regs.h400 RetLocPrimary pri; member
411 static inline RetLoc mk_RetLoc_simple ( RetLocPrimary pri ) { in mk_RetLoc_simple() argument
412 vassert(pri >= RLPri_INVALID && pri <= RLPri_2Int); in mk_RetLoc_simple()
413 return (RetLoc){pri, 0}; in mk_RetLoc_simple()
416 static inline RetLoc mk_RetLoc_spRel ( RetLocPrimary pri, Int off ) { in mk_RetLoc_spRel() argument
417 vassert(pri >= RLPri_V128SpRel && pri <= RLPri_V256SpRel); in mk_RetLoc_spRel()
418 return (RetLoc){pri, off}; in mk_RetLoc_spRel()
422 switch (rloc.pri) { in is_sane_RetLoc()
437 return rl.pri == RLPri_INVALID && rl.spOff == 0; in is_RetLoc_INVALID()
/external/skia/src/core/
DSkBitmapProcState.h155 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec)) argument
159 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16)) argument
165 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { in pack_two_shorts() argument
166 SkASSERT((uint16_t)pri == pri); in pack_two_shorts()
168 return PACK_TWO_SHORTS(pri, sec); in pack_two_shorts()
171 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec) argument
/external/tcpdump/
Dprint-syslog.c87 u_int16_t pri = 0; in syslog_print() local
103 pri = pri * 10 + (*(pptr+msg_off) - '0'); in syslog_print()
117 facility = (pri & SYSLOG_FACILITY_MASK) >> 3; in syslog_print()
118 severity = pri & SYSLOG_SEVERITY_MASK; in syslog_print()
Dospf6.h175 u_int8_t pri; member
178 #define llsa_priority llsa_priandopt.pri
217 u_int8_t pri; member
220 #define hello_priority hello_priandopt.pri
/external/openssh/
Dlog.c391 int pri = LOG_INFO; in do_log() local
402 pri = LOG_CRIT; in do_log()
407 pri = LOG_ERR; in do_log()
410 pri = LOG_INFO; in do_log()
413 pri = LOG_INFO; in do_log()
417 pri = LOG_DEBUG; in do_log()
421 pri = LOG_DEBUG; in do_log()
425 pri = LOG_DEBUG; in do_log()
429 pri = LOG_ERR; in do_log()
452 syslog_r(pri, &sdata, "%.500s", fmtbuf); in do_log()
[all …]
/external/iputils/ninfod/
Dninfod.h88 # define DEBUG(pri, fmt, args...) do { \ argument
90 if (opt_v || pri != LOG_DEBUG) { \
92 syslog(pri, fmt, ## args); \
94 stderrlog(pri, fmt, ## args); \
100 # define DEBUG(pri, fmt, args...) do { ; } while(0) argument
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationFastLatinBuilder.java411 int pri = 0; in encodeUniqueCEs() local
421 assert(pri <= CollationFastLatin.MAX_LONG); in encodeUniqueCEs()
424 result.setCharAt(1 + group, (char)pri); in encodeUniqueCEs()
433 if(pri == 0) { in encodeUniqueCEs()
434 pri = CollationFastLatin.MIN_LONG; in encodeUniqueCEs()
435 } else if(pri < CollationFastLatin.MAX_LONG) { in encodeUniqueCEs()
436 pri += CollationFastLatin.LONG_INC; in encodeUniqueCEs()
445 if(pri < CollationFastLatin.MIN_SHORT) { in encodeUniqueCEs()
446 pri = CollationFastLatin.MIN_SHORT; in encodeUniqueCEs()
447 } else if(pri < (CollationFastLatin.MAX_SHORT - CollationFastLatin.SHORT_INC)) { in encodeUniqueCEs()
[all …]
/external/wpa_supplicant_8/src/common/
Dhw_features_common.c290 int pri = bss->freq; in check_40mhz_2g4() local
291 int sec = pri; in check_40mhz_2g4()
306 sec = pri - 20; in check_40mhz_2g4()
308 sec = pri + 20; in check_40mhz_2g4()
311 if ((pri < affected_start || pri > affected_end) && in check_40mhz_2g4()
320 if (pri_freq != pri || sec_freq != sec) { in check_40mhz_2g4()
326 pri, sec, pri_chan, in check_40mhz_2g4()
327 sec > pri ? '+' : '-', in check_40mhz_2g4()
344 MACSTR, pri, MAC2STR(bss->bssid)); in check_40mhz_2g4()
/external/icu/icu4c/source/i18n/
Dcollationfastlatinbuilder.cpp442 uint32_t pri = 0; in encodeUniqueCEs() local
452 U_ASSERT(pri <= CollationFastLatin::MAX_LONG); in encodeUniqueCEs()
455 result.setCharAt(1 + group, (UChar)pri); in encodeUniqueCEs()
464 if(pri == 0) { in encodeUniqueCEs()
465 pri = CollationFastLatin::MIN_LONG; in encodeUniqueCEs()
466 } else if(pri < CollationFastLatin::MAX_LONG) { in encodeUniqueCEs()
467 pri += CollationFastLatin::LONG_INC; in encodeUniqueCEs()
476 if(pri < CollationFastLatin::MIN_SHORT) { in encodeUniqueCEs()
477 pri = CollationFastLatin::MIN_SHORT; in encodeUniqueCEs()
478 } else if(pri < (CollationFastLatin::MAX_SHORT - CollationFastLatin::SHORT_INC)) { in encodeUniqueCEs()
[all …]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationTest.java765 long pri; field in CollationTest.RootElementsIterator
773 pri = 0; in RootElementsIterator()
795 if (pri == p) { in next()
800 assert (pri < p); in next() argument
802 boolean isCompressible = data.isCompressiblePrimary(pri); in next()
803 if ((pri & 0xffff) == 0) { in next()
804 pri = Collation.incTwoBytePrimaryByOffset(pri, isCompressible, step); in next()
806 pri = Collation.incThreeBytePrimaryByOffset(pri, isCompressible, step); in next()
812 pri = p; in next()
837 return pri; in getPrimary()
[all …]
/external/mesa3d/src/mapi/glapi/gen/
Dgl_enums.py179 for [name, pri] in self.enum_table[ enum ]:
182 if pri < low_pri:
183 low_pri = pri
/external/icu/icu4c/source/test/intltest/
Dcollationtest.cpp692 pri(0), secTer(0), in RootElementsIterator()
708 if(pri == p) { in next()
713 U_ASSERT(pri < p); in next()
715 UBool isCompressible = data.isCompressiblePrimary(pri); in next()
716 if((pri & 0xffff) == 0) { in next()
717 pri = Collation::incTwoBytePrimaryByOffset(pri, isCompressible, step); in next()
719 pri = Collation::incThreeBytePrimaryByOffset(pri, isCompressible, step); in next()
725 pri = p; in next()
749 uint32_t getPrimary() const { return pri; } in getPrimary()
757 uint32_t pri; member in __anon235258930211::RootElementsIterator
[all …]
/external/bison/runtime-po/
Dsl.po44 msgstr "skladenjska napaka, nepričakovan %s, pričakuje se %s"
49 msgstr "skladenjska napaka, nepričakovan %s, pričakuje se %s ali %s"
54 msgstr "skladenjska napaka, nepričakovan %s, pričakuje se %s , %s ali %s"
59 msgstr "skladenjska napaka, nepričakovan %s, pričakuje se %s , %s , %s ali %s"
/external/toybox/toys/pending/
Dsyslogd.c320 int pri = 0; in logmsg() local
327 pri = (int) strtoul(msg + 1, &p, 10); in logmsg()
343 fac = LOG_FAC(pri); in logmsg()
344 lvl = LOG_PRI(pri); in logmsg()
346 if (toys.optflags & FLAG_K) len = sprintf(toybuf, "<%d> %s\n", pri, msg); in logmsg()
350 facstr = dec(pri & LOG_FACMASK, facilitynames, facbuf); in logmsg()
351 lvlstr = dec(LOG_PRI(pri), prioritynames, pribuf); in logmsg()
Dhost.c72 unsigned ttl, pri, v[5]; in host_main() local
189 pri = (p[0]<<8)+p[1]; in host_main()
190 snprintf(plname, sizeof(plname), verbose ? "%d " : "(pri=%d) by ", pri); in host_main()
/external/e2fsprogs/lib/blkid/
Dtag.c334 int pri; in blkid_find_dev_with_tag() local
346 pri = -1; in blkid_find_dev_with_tag()
356 (tmp->bit_dev->bid_pri > pri) && in blkid_find_dev_with_tag()
359 pri = dev->bid_pri; in blkid_find_dev_with_tag()
Ddevname.c183 dev_t devno, int pri, int only_if_new) in probe_one() argument
253 if (pri) in probe_one()
254 dev->bid_pri = pri; in probe_one()
/external/wpa_supplicant_8/src/ap/
Dieee802_11_ht.c182 int pri = 2407 + 5 * channel; in is_40_allowed() local
196 if ((pri < affected_start || pri > affected_end)) in is_40_allowed()
201 wpa_printf(MSG_ERROR, "Neighboring BSS: freq=%d", pri); in is_40_allowed()
/external/elfutils/src/m4/
DChangeLog51 inttypes.m4, inttypes_h.m4, inttypes-pri.m4, isc-posix.m4,
57 * inttypes-pri.m4: Removed.
/external/selinux/policycoreutils/semodule/
Dsemodule.c475 uint16_t pri = 0; in main() local
482 result = semanage_module_info_get_priority(sh, m, &pri); in main()
495 (int)column[0], pri, in main()

1234