Searched refs:ucs (Results 1 - 11 of 11) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dconsolemap.h15 extern int conv_uni_to_pc(struct vc_data *conp, long ucs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/gigaset/
H A Dbas-gigaset.c346 * ucs hardware specific controller state structure
348 static void check_pending(struct bas_cardstate *ucs) argument
352 spin_lock_irqsave(&ucs->lock, flags);
353 switch (ucs->pending) {
357 if (atomic_read(&ucs->basstate) & BS_ATOPEN)
358 ucs->pending = 0;
361 if (atomic_read(&ucs->basstate) & BS_B1OPEN)
362 ucs->pending = 0;
365 if (atomic_read(&ucs->basstate) & BS_B2OPEN)
366 ucs
407 struct bas_cardstate *ucs = cs->hw.bas; local
436 update_basstate(struct bas_cardstate *ucs, int set, int clear) argument
460 struct bas_cardstate *ucs = cs->hw.bas; local
551 struct bas_cardstate *ucs = cs->hw.bas; local
601 struct bas_cardstate *ucs = cs->hw.bas; local
1362 struct bas_cardstate *ucs = bcs->cs->hw.bas; local
1416 struct bas_cardstate *ucs = urb->context; local
1490 struct bas_cardstate *ucs = bcs->cs->hw.bas; local
1663 struct bas_cardstate *ucs = cs->hw.bas; local
1720 struct bas_cardstate *ucs = cs->hw.bas; local
1742 struct bas_cardstate *ucs = cs->hw.bas; local
1793 struct bas_cardstate *ucs = cs->hw.bas; local
2073 struct bas_cardstate *ucs; local
2103 struct bas_cardstate *ucs = cs->hw.bas; local
2145 struct bas_cardstate *ucs = NULL; local
2268 struct bas_cardstate *ucs; local
2366 struct bas_cardstate *ucs = cardstate->hw.bas; local
[all...]
H A Dusb-gigaset.c400 struct usb_cardstate *ucs = cs->hw.usb; local
425 count = min(cb->len, ucs->bulk_out_size);
428 usb_fill_bulk_urb(ucs->bulk_out_urb, ucs->udev,
429 usb_sndbulkpipe(ucs->udev,
430 ucs->bulk_out_endpointAddr & 0x0f),
436 atomic_set(&ucs->busy, 1);
439 status = cs->connected ? usb_submit_urb(ucs->bulk_out_urb, GFP_ATOMIC) : -ENODEV;
443 atomic_set(&ucs->busy, 0);
557 struct usb_cardstate *ucs; local
586 struct usb_cardstate *ucs = cs->hw.usb; local
642 struct usb_cardstate *ucs = NULL; local
779 struct usb_cardstate *ucs; 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)
94 ucs++;
96 if (*ucs == uc)
97 return (wchar_t *) ucs;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dunistr.c263 ntfschar *ucs; local
269 ucs = kmem_cache_alloc(ntfs_name_cache, GFP_NOFS);
270 if (likely(ucs)) {
277 ucs[o++] = cpu_to_le16(wc);
285 ucs[o] = 0;
286 *outs = ucs;
288 } /* else if (!ucs) */
296 kmem_cache_free(ntfs_name_cache, ucs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dunistr.c848 ntfschar *ucs; local
896 ucs = ntfs_malloc(ucs_len * sizeof(ntfschar));
897 if (!ucs)
909 tc = realloc(ucs, ucs_len);
912 ucs = tc;
938 ucs[o] = cpu_to_le16(wc);
949 ucs[o] = cpu_to_le16(L'\0');
950 *outs = ucs;
953 free(ucs);
1042 ntfschar *ucs local
1068 ntfs_ucsfree(ntfschar *ucs) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dunistr.h66 extern void ntfs_ucsfree(ntfschar *ucs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dconsolemap.c621 conv_uni_to_pc(struct vc_data *conp, long ucs) argument
628 if (ucs > 0xffff)
630 else if (ucs < 0x20)
632 else if (ucs == 0xfeff || (ucs >= 0x200b && ucs <= 0x200f))
639 else if ((ucs & ~UNI_DIRECT_MASK) == UNI_DIRECT_BASE)
640 return ucs & UNI_DIRECT_MASK;
646 if ((p1 = p->uni_pgdir[ucs >> 11]) &&
647 (p2 = p1[(ucs >>
[all...]
H A Dvt.c1955 * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
1962 static int bisearch(uint32_t ucs, const struct interval *table, int max) argument
1967 if (ucs < table[0].first || ucs > table[max].last)
1971 if (ucs > table[mid].last)
1973 else if (ucs < table[mid].first)
1981 static int is_double_width(uint32_t ucs) argument
1989 return bisearch(ucs, double_width,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/tools/
H A Dcjk_tab_to_h.c1697 unsigned int ucs; local
1732 ucs = private_use++;
1740 ucs = strtoul(&line[10],NULL,16);
1744 table[row_convert(row)][col-0x21] = ucs;
1892 unsigned int ucs; local
1899 ucs = strtoul(&line[10],NULL,16);
1904 table[ucs] = (plane << 15) | (row << 8) | col;
1905 pages[ucs>>6] = true;
1906 if (maxpage < 0 || (ucs>>6) > maxpage) maxpage = ucs>>
1976 unsigned int ucs = (i<<6)+j; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A Djisx0213.h5901 static unsigned short ucs4_to_jisx0213 (ucs4_t ucs) argument
5903 if (ucs < (sizeof(jisx0213_from_ucs_level1)/sizeof(jisx0213_from_ucs_level1[0])) << 6) {
5904 int index1 = jisx0213_from_ucs_level1[ucs >> 6];
5906 const Summary16 *summary = &jisx0213_from_ucs_level2_2indx[((index1 << 6) + (ucs & 0x3f)) >> 4];
5908 unsigned int i = ucs & 0x0f;

Completed in 185 milliseconds