HomeSort by relevance Sort by last modified time
    Searched refs:c32 (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/syslinux/com32/modules/
Makefile 21 MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \
22 disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \
    [all...]
  /bionic/libc/bionic/
c32rtomb.cpp 35 size_t c32rtomb(char* s, char32_t c32, mbstate_t* ps) {
48 if (c32 == U'\0') {
57 if ((c32 & ~0x7f) == 0) {
59 *s = c32;
69 if ((c32 & ~0x7f) == 0) {
72 } else if ((c32 & ~0x7ff) == 0) {
75 } else if ((c32 & ~0xffff) == 0) {
78 } else if ((c32 & ~0x1fffff) == 0) {
91 s[i] = (c32 & 0x3f) | 0x80;
92 c32 >>= 6
    [all...]
mbrtoc16.cpp 40 static size_t begin_surrogate(char32_t c32, char16_t* pc16,
42 c32 -= 0x10000;
43 char16_t trail = (c32 & 0x3ff) | 0xdc00;
49 *pc16 = ((c32 & 0xffc00) >> 10) | 0xd800;
74 char32_t c32; local
75 size_t nconv = mbrtoc32(&c32, s, n, state);
80 } else if (c32 > 0x10ffff) {
83 } else if (c32 < 0x10000) {
84 *pc16 = static_cast<char16_t>(c32);
87 return begin_surrogate(c32, pc16, nconv, state)
    [all...]
mbrtoc32.cpp 120 char32_t c32 = mbstate_get_byte(state, 0) & mask; local
122 c32 <<= 6;
123 c32 |= mbstate_get_byte(state, i) & 0x3f;
126 if (c32 < lower_bound) {
130 if ((c32 >= 0xd800 && c32 <= 0xdfff) || c32 == 0xfffe || c32 == 0xffff) {
135 *pc32 = c32;
137 return reset_and_return(c32 == U'\0' ? 0 : bytes_wanted, state)
    [all...]
c16rtomb.cpp 48 char32_t c32 = (c16 & ~0xd800) << 10; local
49 mbstate_set_byte(state, 3, (c32 & 0xff0000) >> 16);
50 mbstate_set_byte(state, 2, (c32 & 0x00ff00) >> 8);
62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) | local
65 return reset_and_return(c32rtomb(s, c32, NULL), state);
  /external/syslinux/com32/samples/
Makefile 17 LIBS = $(objdir)/com32/libutil/libutil.c32
22 all: hello.c32 resolv.c32 serialinfo.c32 \
23 localboot.c32 \
24 fancyhello.c32 fancyhello.lnx \
25 keytest.c32 keytest.lnx \
26 advdump.c32 entrydump.c32
35 rm -f *.lss *.c32 *.co
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTUnicode.cpp 79 @Input c32 A UTF32 character/Unicode code point
83 static bool CheckGenericUnicode(PVRTuint32 c32)
86 if(c32 >= UTF16_SURG_H_MARK && c32 <= UTF16_SURG_L_END)
89 if(c32 >= UNICODE_NONCHAR_MARK && c32 <= UNICODE_NONCHAR_END)
92 if((c32 & UNICODE_RESERVED) == UNICODE_RESERVED)
95 if(c32 > UNICODE_MAX)
114 PVRTuint32 c32; local
128 c32 = *pC++
188 PVRTuint32 c32; local
315 PVRTuint32 c32 = *pC++; local
    [all...]
  /external/clang/test/Misc/
ast-dump-wchar.cpp 9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
  /external/libopus/silk/
macros.h 56 /* a32 + (b32 * (opus_int32)((opus_int16)(c32))) >> 16 output have to be 32bit int */
58 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(c32))) >> 16)))
60 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32))) >> 16)))
70 /* a32 + (b32 * (c32 >> 16)) >> 16 */
72 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16)) >> 16)))
74 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x0000FFFF) * ((c32) >> 16)) >> 16)
    [all...]
  /external/syslinux/com32/lua/src/
Makefile 27 MODULES = lua.c32
28 MODULES += cpu.c32
29 MODULES += dhcp.c32
30 MODULES += dmi.c32
31 MODULES += lfs.c32
32 MODULES += pci.c32
33 MODULES += syslinux.c32
34 MODULES += vesa.c32
35 MODULES += cmenu.c32
40 LIBLUA = liblua.c32
    [all...]
  /external/syslinux/com32/cmenu/
Makefile 20 LIBS = libmenu/libmenu.c32 \
21 $(objdir)/com32/libutil/libutil.c32 \
22 $(objdir)/com32/lib/libcom32.c32
24 C_LIBS = libmenu/libmenu.c32
33 $(objdir)/com32/libutil/libutil.c32 $(objdir)/com32/lib/libcom32.c32
35 CMENUS = $(patsubst %.c,%.c32,$(wildcard $(SRC)/*.c))
36 IMENUS = $(patsubst %.menu,%.c32,$(wildcard $(SRC)/*.menu))
40 .SUFFIXES: .S .c .o .elf .c32 .menu
52 $(LD) -shared $(LDFLAGS) -soname $(patsubst %.elf,%.c32,$(@F))
    [all...]
  /external/syslinux/com32/rosh/
Makefile 19 LIBS = $(objdir)/com32/libutil/libutil.c32 \
20 $(objdir)/com32/lib/libcom32.c32
39 all: rosh.c32
45 allgrc: rosh.c32 rosh.lnx
54 rm -f *.lss *.c32 *.com
  /external/syslinux/com32/chain/
Makefile 22 all: chain.c32
37 rm -f *.lss *.c32 *.com
  /external/syslinux/com32/mboot/
Makefile 23 MODULES = mboot.c32
40 rm -f *.lss *.c32 *.com
  /external/libpng/contrib/tools/
checksum-icc.c 23 uLong c32 = crc32(0, NULL, 0); local
40 c32 = crc32(c32, &b, 1);
51 (unsigned long)a32, (unsigned long)c32,
  /external/syslinux/com32/gpllib/
Makefile 20 all: makeoutputdirs libgpl.c32
27 $(LD) -shared $(LDFLAGS) -soname $(patsubst %.elf,%.c32,$(@F)) -o $@ $^
34 rm -f *.c32
41 install -m 644 libgpl.c32 $(INSTALLROOT)$(COM32DIR)
  /external/icu/icu4c/source/test/intltest/
tokiter.cpp 88 UChar32 c32 = line.unescapeAt(pos); local
89 if (c32 < 0) {
93 token.append(c32);
  /external/syslinux/com32/libutil/
Makefile 41 all: libutil.c32 libutil_lnx.a
44 $(LD) $(LDFLAGS) -soname $(patsubst %.elf,%.c32,$(@F)) -o $@ $^
58 rm -f *.lss *.a *.c32 *.com
  /external/syslinux/com32/menu/
Makefile 22 MODULES = menu.c32 vesamenu.c32
43 rm -f *.lss *.c32 *.com
  /external/syslinux/
Makefile 141 com32/menu/*.c32 com32/modules/*.c32 com32/mboot/*.c32 \
142 com32/hdt/*.c32 com32/rosh/*.c32 com32/gfxboot/*.c32 \
143 com32/sysdump/*.c32 com32/lua/src/*.c32 com32/chain/*.c32 \
144 com32/lib/*.c32 com32/libutil/*.c32 com32/gpllib/*.c32
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);
  /external/syslinux/mk/
build.mk 26 .SUFFIXES: .c .o .S .s .i .elf .com .bin .asm .lst .c32 .lss
  /external/syslinux/sample/
Makefile 36 rm -f *.lss *.o *.c32 *.com
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
utf_sanity_check.pass.cpp 40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);

Completed in 715 milliseconds

1 2 3 4 5 6 7