Searched refs:uc (Results 51 - 75 of 218) sorted by relevance

123456789

/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A Dregc_locale.c615 celt c, lc, uc, tc; local
644 uc = Tcl_UniCharToUpper((chr)c);
649 if (c != uc) {
650 addchr(cv, uc);
652 if (c != tc && tc != uc) {
935 chr lc, uc, tc; local
938 uc = Tcl_UniCharToUpper((chr)c);
941 if (tc != uc) {
948 if (lc != uc) {
949 addchr(cv, uc);
[all...]
/macosx-10.10/OpenSSL098-52/src/util/
H A Dbat.sh16 $uc=$lib;
17 $uc =~ s/^lib(.*)\.a/$1/;
18 $uc =~ tr/a-z/A-Z/;
19 $lib_nam{$uc}=$uc;
20 $lib_obj{$uc}.=$libobj." ";
/macosx-10.10/libiconv-42/libiconv/src/
H A Diconv.c215 static void update_line_column (unsigned int uc, void* data) argument
217 if (uc == 0x000A) {
221 int width = uc_width(uc, cjkcode);
224 else if (uc == 0x0009)
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dodlocales.c43 odloc_res *uc; local
51 uc = op->o_callback->sc_private;
59 uc->lname = someVal->a_vals->bv_val;
60 uc->count++;
71 odloc_res *uc; local
79 uc = op->o_callback->sc_private;
87 uc->lname = someVal->a_vals->bv_val;
88 uc->count++;
/macosx-10.10/dtrace-147/libdwarf/
H A Ddwarf_macro.c167 unsigned char uc = 0; local
238 uc = *pnext;
240 switch (uc) {
346 uc = *pnext;
348 pdmd->dmd_type = uc;
353 switch (uc) {
/macosx-10.10/OpenSSL098-52/bin/
H A Dinstall_manpages79 if(defined $FILE_BLACKLIST{uc($f_name)})
106 if ( uc($s_name) ne uc($f_name) )
/macosx-10.10/ntfs-84/kext/
H A Dntfs_unistr.c440 * @uc: destination buffer in which to generate the upcase table
449 void ntfs_upcase_table_generate(ntfschar *uc, int uc_size) argument
508 bzero(uc, uc_size);
512 uc[i] = cpu_to_le16(i);
516 uc[i] = cpu_to_le16(le16_to_cpu(uc[i]) + add[r][2]);
521 uc[i + 1] = cpu_to_le16(le16_to_cpu(uc[i + 1]) - 1);
524 uc[set[r][0]] = cpu_to_le16(set[r][1]);
H A Dntfs_unistr.h90 __private_extern__ void ntfs_upcase_table_generate(ntfschar *uc, int uc_size);
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Dmachine_check.h128 uint64_t uc :BIT1(61); member in struct:__anon15293::__anon15294
143 uint64_t uc :BIT1(61); member in struct:__anon15293::__anon15295
150 /* Values for threshold_status if mcg_tes_p == 1 and uc == 0 */
/macosx-10.10/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/t/
H A D92_Tree_Simple_Visitor_ToNestedHash_test.t68 return uc($_[0]->getNodeValue());
88 return uc($_[0]->getNodeValue());
H A D93_Tree_Simple_Visitor_ToNestedArray_test.t68 return uc($_[0]->getNodeValue());
88 return uc($_[0]->getNodeValue());
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ddictbe.cpp259 UChar32 uc; local
330 uc = utext_current32(text);
337 if (fEndWordSet.contains(pc) && fBeginWordSet.contains(uc)) {
340 // two characters after uc were not 0x0E4C THANTHAKHAT before
349 pc = uc;
379 && fSuffixSet.contains(uc = utext_current32(text))) {
380 if (uc == THAI_PAIYANNOI) {
386 uc = utext_current32(text); // Fetch next character
393 if (uc == THAI_MAIYAMOK) {
487 UChar32 uc; local
688 UChar32 uc; local
[all...]
/macosx-10.10/libiconv-42/install/
H A Diconv.h86 typedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);
/macosx-10.10/ruby-106/ruby/tool/
H A Denc-emoji-citrus-gen.rb78 io.print pairs.inject("") {|acc, uc| acc += "0x%04X = 0x%04X\n" % uc.reverse }
90 io.print pairs.inject("") {|acc, uc| acc += "0x%04X = 0x%04X\n" % uc }
/macosx-10.10/Libc-1044.1.2/regex/TRE/lib/
H A Dtre-match-utils.h527 tre_cint_t uc, lc; local
537 uc = tre_toupper_l(wc, tnfa->loc);
541 uc = wc;
556 match = (b->value == uc || b->value == lc);
575 ue = __collate_equiv_value(tnfa->loc, &uc, 1);
595 match = (tre_isctype_l(uc, b->value, tnfa->loc) ||
605 ue = __collate_equiv_value(tnfa->loc, &uc, 1);
/macosx-10.10/Security-57031.1.35/Security/include/security_pkcs12/
H A Dpkcs12SafeBag.cpp146 UniChar uc = CFStringGetCharacterAtIndex(fname, dex); local
147 *cp++ = uc >> 8;
148 *cp++ = uc & 0xff;
210 UniChar *uc = (UniChar *)malloc(strLen * sizeof(UniChar)); local
212 UniChar *outp = uc;
218 CFStringRef cstr = CFStringCreateWithCharacters(NULL, uc, strLen);
219 free(uc);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_pkcs12/lib/
H A Dpkcs12SafeBag.cpp146 UniChar uc = CFStringGetCharacterAtIndex(fname, dex); local
147 *cp++ = uc >> 8;
148 *cp++ = uc & 0xff;
210 UniChar *uc = (UniChar *)malloc(strLen * sizeof(UniChar)); local
212 UniChar *outp = uc;
218 CFStringRef cstr = CFStringCreateWithCharacters(NULL, uc, strLen);
219 free(uc);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dpkcs12Derive.cpp354 UniChar uc = 0; local
356 uc = CFStringGetCharacterAtIndex(cfStr, dex);
357 *cp++ = uc >> 8;
358 *cp++ = uc & 0xff;
361 if(uc == 0) {
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Drltty.c897 unsigned char uc;
899 uc = tiop->c_cc[sc];
900 if (uc != (unsigned char)_POSIX_VDISABLE && kmap[uc].type == ISFUNC)
901 kmap[uc].function = func;
905 #define RESET_SPECIAL(uc) \
906 if (uc != (unsigned char)_POSIX_VDISABLE && kmap[uc].type == ISFUNC) \
907 kmap[uc].function = rl_insert;
896 unsigned char uc; local
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclLink.c36 unsigned char uc; member in union:Link::__anon12756
323 changed = (LinkedVar(unsigned char) != linkPtr->lastValue.uc);
445 linkPtr->lastValue.uc = (unsigned char) valueInt;
446 LinkedVar(unsigned char) = linkPtr->lastValue.uc;
586 linkPtr->lastValue.uc = LinkedVar(unsigned char);
587 return Tcl_NewIntObj(linkPtr->lastValue.uc);
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dbacktrace.c99 btcallback(void *uc, void *opq) { argument
105 arg->result[arg->count++] = (void *)_Unwind_GetIP(uc);
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dcoll.h1143 static inline Collator *fromUCollator(UCollator *uc) { argument
1144 return reinterpret_cast<Collator *>(uc);
1147 static inline const Collator *fromUCollator(const UCollator *uc) { argument
1148 return reinterpret_cast<const Collator *>(uc);
H A Dtblcoll.h768 static inline RuleBasedCollator *rbcFromUCollator(UCollator *uc) { argument
769 return dynamic_cast<RuleBasedCollator *>(fromUCollator(uc));
772 static inline const RuleBasedCollator *rbcFromUCollator(const UCollator *uc) { argument
773 return dynamic_cast<const RuleBasedCollator *>(fromUCollator(uc));
/macosx-10.10/libiconv-42/libiconv/include/
H A Diconv.h90 typedef void (*iconv_unicode_char_hook) (unsigned int uc, void* data);
/macosx-10.10/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vfsops.c699 u_char uc; local
735 uc = extboot->exVolumeLabel[i];
736 if (i==0 && uc == SLOT_E5)
737 uc = 0xE5;
738 pmp->pm_label[i] = (uc < 0x80 || uc > 0x9F ? uc : dos2unicode[uc - 0x80]);
1632 u_char uc; local
1699 uc
[all...]

Completed in 519 milliseconds

123456789