Searched refs:uc (Results 1 - 25 of 176) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/unistr/
H A Du8-uctomb-aux.c24 u8_uctomb_aux (uint8_t *s, ucs4_t uc, int n) argument
28 if (uc < 0x80)
31 else if (uc < 0x800)
33 else if (uc < 0x10000)
35 if (uc < 0xd800 || uc >= 0xe000)
41 else if (uc < 0x200000)
43 else if (uc < 0x4000000)
45 else if (uc <= 0x7fffffff)
48 else if (uc <
[all...]
H A Du8-uctomb.c26 u8_uctomb (uint8_t *s, ucs4_t uc, int n) argument
28 if (uc < 0x80)
32 s[0] = uc;
41 if (uc < 0x800)
43 else if (uc < 0x10000)
45 if (uc < 0xd800 || uc >= 0xe000)
51 else if (uc < 0x200000)
53 else if (uc < 0x4000000)
55 else if (uc <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/unistr/
H A Du8-uctomb-aux.c24 u8_uctomb_aux (uint8_t *s, ucs4_t uc, int n) argument
28 if (uc < 0x80)
31 else if (uc < 0x800)
33 else if (uc < 0x10000)
35 if (uc < 0xd800 || uc >= 0xe000)
41 else if (uc < 0x200000)
43 else if (uc < 0x4000000)
45 else if (uc <= 0x7fffffff)
48 else if (uc <
[all...]
H A Du8-uctomb.c26 u8_uctomb (uint8_t *s, ucs4_t uc, int n) argument
28 if (uc < 0x80)
32 s[0] = uc;
41 if (uc < 0x800)
43 else if (uc < 0x10000)
45 if (uc < 0xd800 || uc >= 0xe000)
51 else if (uc < 0x200000)
53 else if (uc < 0x4000000)
55 else if (uc <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/sys-x86_64/
H A Dsignal.c12 struct ucontext *uc; local
13 asm("movq %%rdx, %0" : "=r" (uc));
15 handle_signal(sig, (struct sigcontext *) &uc->uc_mcontext);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-x86_64/
H A Dstub_segv.c20 struct ucontext uc; member in struct:rt_sigframe
32 struct ucontext *uc; local
35 __asm__ __volatile__("movq %%rdx, %0" : "=g" (uc) :);
37 &uc->uc_mcontext);
48 container_of(uc, struct rt_sigframe, uc) + 8),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/raid6test/
H A DMakefile20 %.uc: ../%.uc
38 raid6altivec1.c: raid6altivec.uc ../unroll.pl
39 $(PERL) ../unroll.pl 1 < raid6altivec.uc > $@
41 raid6altivec2.c: raid6altivec.uc ../unroll.pl
42 $(PERL) ../unroll.pl 2 < raid6altivec.uc > $@
44 raid6altivec4.c: raid6altivec.uc ../unroll.pl
45 $(PERL) ../unroll.pl 4 < raid6altivec.uc > $@
47 raid6altivec8.c: raid6altivec.uc ../unroll.pl
48 $(PERL) ../unroll.pl 8 < raid6altivec.uc >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/tests/
H A Dgengb18030z.c28 int i1, i2, i3, i4, uc; local
34 uc = 0x10000;
39 printf("0x%02X%02X%02X%02X\t0x%X\n", i1, i2, i3, i4, uc);
40 uc++;
41 if (uc == 0x110000)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/momentum/ocelot_3/
H A Dprom.c53 unsigned char *puc, uc; local
62 uc = *puc++;
63 ul = (unsigned long)uc;
64 uc = *puc++;
65 ul |= (((unsigned long)uc) << 8);
66 uc = *puc++;
67 ul |= (((unsigned long)uc) << 16);
68 uc = *puc++;
69 ul |= (((unsigned long)uc) << 24);
71 uc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/momentum/ocelot_c/
H A Dprom.c54 unsigned char *puc, uc; local
63 uc = *puc++;
64 ul = (unsigned long)uc;
65 uc = *puc++;
66 ul |= (((unsigned long)uc) << 8);
67 uc = *puc++;
68 ul |= (((unsigned long)uc) << 16);
69 uc = *puc++;
70 ul |= (((unsigned long)uc) << 24);
72 uc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-properties.c73 unsigned int uc; local
74 str += u8_mbtouc (&uc, (const unsigned char *) str, str_limit - str);
75 length += (uc <= 0x007f ? 1 : uc < 0x10000 ? 6 : 12);
88 unsigned int uc; local
89 str += u8_mbtouc (&uc, (const unsigned char *) str, str_limit - str);
90 if (uc <= 0x007f)
95 *newstr++ = uc;
96 else if (uc < 0x10000)
100 hexdigit[(uc >> 1
135 unsigned int uc; local
[all...]
H A Dwrite-tcl.c62 unsigned int uc; local
64 count = u8_mbtouc (&uc, (const unsigned char *) str, str_limit - str);
65 if (uc < 0x10000)
68 if (uc == 0x000a)
70 else if (uc == 0x000d)
72 else if (uc == 0x0022)
74 else if (uc == 0x0024)
76 else if (uc == 0x005b)
78 else if (uc == 0x005c)
80 else if (uc
[all...]
H A Dfilter-sr-latin.c180 unsigned int uc = ((byte & 0x1f) << 6) | (second_byte & 0x3f); local
182 if (uc >= 0x0400 && uc <= 0x045f)
185 const char *repl = table[uc - 0x0400];
191 if (uc == 0x0409 || uc == 0x040a || uc == 0x040f)
205 switch (uc)
H A Dwrite-csharp.c136 unsigned int uc; local
137 str += u8_mbtouc (&uc, (const unsigned char *) str, str_limit - str);
138 if (uc >= 0x10000)
142 *b++ = hexdigit[(uc >> 28) & 0x0f];
143 *b++ = hexdigit[(uc >> 24) & 0x0f];
144 *b++ = hexdigit[(uc >> 20) & 0x0f];
145 *b++ = hexdigit[(uc >> 16) & 0x0f];
146 *b++ = hexdigit[(uc >> 12) & 0x0f];
147 *b++ = hexdigit[(uc >> 8) & 0x0f];
148 *b++ = hexdigit[(uc >>
180 unsigned int uc; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dcifs_unicode.h91 UniStrchr(const wchar_t * ucs, wchar_t uc) argument
93 while ((*ucs != uc) && *ucs)
96 if (*ucs == uc)
277 UniToupper(register wchar_t uc) argument
281 if (uc < sizeof (CifsUniUpperTable)) { /* Latin characters */
282 return uc + CifsUniUpperTable[uc]; /* Use base tables */
286 if (uc < rp->start) /* Before start of range */
287 return uc; /* Uppercase = input */
288 if (uc <
318 UniTolower(wchar_t uc) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/
H A Dutf8.c45 #define GETUTF8TRAILBYTE(uc,shift) ((char)( 0x80 | ((uc >> shift) & 0x3F) ) )
78 ucs2_t uc = 0; local
89 uc = c[0];
95 uc = (ucs2_t) (((c[0] & 0x1f) << 6) | GETUCVAL(c[1],0)) ;
102 uc = (ucs2_t) (((c[0] & 0x0f) << 12) | GETUCVAL(c[1],6) | GETUCVAL(c[2],0)) ;
131 SSVAL(*outbuf,0,uc);
154 ucs2_t uc=0; local
161 uc = SVAL((*inbuf),0);
167 if (uc <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/
H A Dutf8.c45 #define GETUTF8TRAILBYTE(uc,shift) ((char)( 0x80 | ((uc >> shift) & 0x3F) ) )
78 ucs2_t uc = 0; local
89 uc = c[0];
95 uc = (ucs2_t) (((c[0] & 0x1f) << 6) | GETUCVAL(c[1],0)) ;
102 uc = (ucs2_t) (((c[0] & 0x0f) << 12) | GETUCVAL(c[1],6) | GETUCVAL(c[2],0)) ;
131 SSVAL(*outbuf,0,uc);
154 ucs2_t uc=0; local
161 uc = SVAL((*inbuf),0);
167 if (uc <
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/uniwidth/
H A Dtest-uc_width.c40 ucs4_t uc; local
43 for (uc = 0x0020; uc < 0x007F; uc++)
44 ASSERT (uc_width (uc, "ISO-8859-2") == 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_unicode.h120 static inline wchar_t UniToupper(wchar_t uc) argument
124 if (uc < sizeof(UniUpperTable)) { /* Latin characters */
125 return uc + UniUpperTable[uc]; /* Use base tables */
129 if (uc < rp->start) /* Before start of range */
130 return uc; /* Uppercase = input */
131 if (uc <= rp->end) /* In range */
132 return uc + rp->table[uc - rp->start];
136 return uc; /* Pas
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Duniname.h32 unicode_character_name (ucs4_t uc, char *buf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Ddecompress.c108 UChar uc; local
197 GET_UCHAR(BZ_X_MAGIC_1, uc);
198 if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
200 GET_UCHAR(BZ_X_MAGIC_2, uc);
201 if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
203 GET_UCHAR(BZ_X_MAGIC_3, uc)
204 if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
222 GET_UCHAR(BZ_X_BLKHDR_1, uc);
224 if (uc == 0x17) goto endhdr_2;
225 if (uc !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dupcase.c69 ntfschar *uc; local
71 uc = ntfs_malloc_nofs(default_upcase_len * sizeof(ntfschar));
72 if (!uc)
73 return uc;
74 memset(uc, 0, default_upcase_len * sizeof(ntfschar));
77 uc[i] = cpu_to_le16(i);
80 uc[i] = cpu_to_le16(le16_to_cpu(uc[i]) +
84 uc[i + 1] = cpu_to_le16(le16_to_cpu(uc[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Davio.c73 URLContext *uc; local
76 uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1);
77 if (!uc) {
82 uc->av_class = &urlcontext_class;
84 uc->filename = (char *) &uc[1];
85 strcpy(uc->filename, filename);
86 uc->prot = up;
87 uc->flags = flags;
88 uc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/uniname/
H A Dgen-uninames.lisp201 (dolist (uc all-chars)
202 (let ((name (unicode-char-name uc))
216 (setf (unicode-char-word-indices uc)
241 (reduce #'+ (mapcar (lambda (uc) (length (unicode-char-word-indices uc))) all-chars))
244 (dolist (uc all-chars)
247 (coerce (unicode-char-word-indices uc) 'list)
251 (format ostream "~40T/* ~A */" (unicode-char-name uc))
254 (setf (unicode-char-word-indices-index uc) i)
255 (incf i (length (unicode-char-word-indices uc)))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Diconv.c545 uint8 *uc = (uint8 *)*outbuf; local
549 uc[0] = c[0];
550 uc[1] = 0;
554 uc += 2;
564 uc[1] = (c[0]>>2) & 0x7;
565 uc[0] = (c[0]<<6) | (c[1]&0x3f);
569 uc += 2;
580 uc[1] = ((c[0]&0xF)<<4) | ((c[1]>>2)&0xF);
581 uc[0] = (c[1]<<6) | (c[2]&0x3f);
585 uc
662 const uint8 *uc = (const uint8 *)*inbuf; local
[all...]

Completed in 276 milliseconds

12345678