Home
last modified time | relevance | path

Searched refs:c32 (Results 1 – 25 of 130) sorted by relevance

123456

/external/syslinux/com32/modules/
DMakefile21 MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \
22 disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \
23 meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \
24 kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \
25 ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \
26 whichsys.c32 prdhcp.c32 pxechn.c32 kontron_wdt.c32 ifmemdsk.c32 \
27 hexdump.c32 poweroff.c32 cptime.c32 debug.c32
47 rm -f *.lss *.c32 *.com
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTUnicode.cpp83 static bool CheckGenericUnicode(PVRTuint32 c32) in CheckGenericUnicode() argument
86 if(c32 >= UTF16_SURG_H_MARK && c32 <= UTF16_SURG_L_END) in CheckGenericUnicode()
89 if(c32 >= UNICODE_NONCHAR_MARK && c32 <= UNICODE_NONCHAR_END) in CheckGenericUnicode()
92 if((c32 & UNICODE_RESERVED) == UNICODE_RESERVED) in CheckGenericUnicode()
95 if(c32 > UNICODE_MAX) in CheckGenericUnicode()
114 PVRTuint32 c32; in PVRTUnicodeUTF8ToUTF32() local
128 c32 = *pC++; in PVRTUnicodeUTF8ToUTF32()
129 uiTailLen = c_u8UTF8Lengths[c32]; in PVRTUnicodeUTF8ToUTF32()
136c32 &= (TAIL_MASK >> uiTailLen); // Get the data out of the first byte. This depends on the length… in PVRTUnicodeUTF8ToUTF32()
145 c32 = (c32 << BYTES_PER_TAIL) + (pC[uiIndex] & TAIL_MASK); in PVRTUnicodeUTF8ToUTF32()
[all …]
/external/libopus/silk/
Dmacros.h58 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)( argument
60 …WB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0… argument
72 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))… argument
74 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
81 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
87 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
90 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))… argument
101 #define silk_SMLAWW(a32, b32, c32) ((opus_int32)((a32) + (((opus_int64)(b32) * (c32)) >> 16))) argument
103 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
DMacroDebug.h289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_() argument
291 ret = a32 + b32 * c32; in silk_MLA_()
292 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 ) in silk_MLA_()
294 fprintf (stderr, "silk_MLA(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line); in silk_MLA_()
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_() argument
306 ret = a32 + b32 * c32; in silk_MLA_uint_()
307 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 ) in silk_MLA_uint_()
309 fprintf (stderr, "silk_MLA_uint(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line); in silk_MLA_uint_()
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_() argument
336 ret = silk_ADD32( a32, silk_SMULWB( b32, c32 ) ); in silk_SMLAWB_()
[all …]
DMacroCount.h69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA() argument
72 ret = a32 + b32 * c32; in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint() argument
80 ret = a32 + b32 * c32; in silk_MLA_uint()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB() argument
95 … ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_… in silk_SMLAWB()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT() argument
110 ret = a32 + ((b32 >> 16) * (c32 >> 16)) + (((b32 & 0x0000FFFF) * ((c32 >> 16)) >> 16)); in silk_SMLAWT()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB() argument
125 ret = a32 + (opus_int32)((opus_int16)b32) * (opus_int32)((opus_int16)c32); in silk_SMLABB()
[all …]
/external/syslinux/com32/samples/
DMakefile17 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 *.com
/external/syslinux/com32/lua/src/
DMakefile27 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/
DMakefile20 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)) \
59 rm -f libmenu/*.c32
/external/syslinux/
DMakefile141 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 \
145 com32/elflink/ldlinux/*.c32 com32/cmenu/libmenu/*.c32
148 MODULES = com32/menu/*.c32 com32/modules/*.c32 com32/mboot/*.c32 \
149 com32/hdt/*.c32 com32/rosh/*.c32 com32/gfxboot/*.c32 \
150 com32/sysdump/*.c32 com32/lua/src/*.c32 com32/chain/*.c32 \
151 com32/lib/*.c32 com32/libutil/*.c32 com32/gpllib/*.c32 \
152 com32/cmenu/libmenu/*.c32 com32/elflink/ldlinux/$(LDLINUX)
[all …]
/external/syslinux/doc/
Dmboot.txt2 mboot.c32
5 mboot.c32 is a 32-bit ELF module that allows Syslinux and its
10 To load a multiboot kernel and modules in Syslinux, put mboot.c32 (from
12 configuration file. The command-line to pass to mboot.c32 is the kernel
16 DEFAULT mboot.c32 xen.gz dom0_mem=15000 nosmp noacpi --- linux.gz console=tty0 root=/dev/hda1 --- i…
21 KERNEL mboot.c32
24 mboot.c32 requires version 2.12 or later of Syslinux.
Dpxechn.txt1 = pxechn.c32(1) =
9 pxechn.c32 - Chainboot to new Network Boot Program (NBP)
14 *pxechn.c32* [-h | --help | -?]
15 *pxechn.c32* -r 'FILE'
16 *pxechn.c32* 'FILE' ['OPTIONS']
93 `pxechn.c32 http://myhost.dom.loc/path/nbp.0 -c myconfig`::
96 `pxechn.c32 gpxelinux.0 -p http://10.1.1.4/tftp/ -w -c myconfig -o 15.s=domain.loc -o 6.x=0A:01:01:…
102 `pxechn.c32 gpxelinux.0 -p http://10.1.1.4/tftp/ -w -o 0xA0.x=12:34:56:78 -x 197.x=00:d0:de:00`::
108 `pxechn.c32 10.1.1.8:boot\x86\wdsnbp.com -W`::
112 `pxechn.c32 10.1.1.4:boot\x86\wdsnbp.com -W -o 66.x=0a:01:01:08 -S`::
[all …]
Dcptime.txt1 = cptime.c32(1) =
9 cptime.c32 - times the copy off (read) of a file
13 *cptime.c32* ['OPTIONS'] 'FILE'...
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
Dutf_sanity_check.pass.cpp40 F32_8::intern_type c32; in main() local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok); in main()
86 assert(c32p-&c32 == 1); in main()
87 assert(c32 == c32x); in main()
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok); in main()
123 assert(c32p-&c32 == 1); in main()
124 assert(c32 == c32x); in main()
/external/syslinux/com32/hdt/
DMakefile22 C_LIBS += $(objdir)/com32/cmenu/libmenu/libmenu.c32
25 MODULES = hdt.c32
47 MENU_COM32 ?= $(com32)/menu/menu.c32
48 CHAIN_COM32 ?= $(com32)/chain/chain.c32
60 hdt.img: hdt.c32 $(FLOPPY_DIR)/hdt.cfg $(FLOPPY_DIR)/mtools.conf $(topdir)/mtools/syslinux $(MENU_C…
70 MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) hdt.c32 a:
87 hdt.iso: hdt.c32 $(topdir)/core/isolinux.bin $(FLOPPY_DIR)/hdt.cfg memtest
94 cp hdt.c32 $(ISO_DIR)/$(ISOLINUX_DIR)
122 release: spotless hdt.c32 hdt.img hdt.img.gz hdt.iso hdt-hybrid.iso
123 mv hdt.c32 hdt_$(NODASH_VERSION).c32
[all …]
/external/syslinux/com32/rosh/
DMakefile19 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/hdt/floppy/
Dhdt.cfg1 UI menu.c32
32 COM32 hdt.c32
41 COM32 hdt.c32
50 COM32 hdt.c32
59 COM32 hdt.c32
68 COM32 hdt.c32
77 COM32 hdt.c32
86 COM32 hdt.c32
95 COM32 hdt.c32
105 COM32 hdt.c32
/external/syslinux/txt/
Dsyslinux-cli.txt57 .c32, .cbt[Up to 4.06], .com[Up to 4.06] and .img[*ISOLINUX* 1.65-4.04 only].
72 ls.c32
73 libls.c32
75 libls.c32
79 that libls.c32 is a dependency of ls.c32, executing /boot/bin/ls.c32
80 will cause /boot/foo/libls.c32 to be loaded, not /boot/bin/libls.c32,
/external/lz4/tests/
DMakefile80 cp $(LZ4) $(LZ4)c32
306 ./datagen -g16KB | $(LZ4)c32 -9 | $(LZ4) -t
307 ./datagen -P10 | $(LZ4) -9B4 | $(LZ4)c32 -t
308 ./datagen | $(LZ4)c32 | $(LZ4) -t
309 ./datagen -g1M | $(LZ4) -3B5 | $(LZ4)c32 -t
310 ./datagen -g256MB | $(LZ4)c32 -vqB4D | $(LZ4) -qt
311 ./datagen -g1G -P90 | $(LZ4) | $(LZ4)c32 -t
312 ./datagen -g6GB | $(LZ4)c32 -vq9BD | $(LZ4) -qt
316 ./datagen -g16KB | $(LZ4)c32 -9 | $(LZ4)c32 -t
317 ./datagen | $(LZ4)c32 | $(LZ4)c32 -t
[all …]
/external/icu/icu4c/source/common/
Dutrie.h210 #define _UTRIE_GET(trie, data, c32, result, resultType) \ argument
211 if((uint32_t)(c32)<=0xffff) { \
213 (result)=_UTRIE_GET_FROM_BMP(trie, data, c32); \
214 } else if((uint32_t)(c32)<=0x10ffff) { \
216 UChar __lead16=U16_LEAD(c32); \
217 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/external/syslinux/com32/gpllib/
DMakefile20 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/libpng/contrib/tools/
Dchecksum-icc.c23 uLong c32 = crc32(0, NULL, 0); in read_one_file() local
40 c32 = crc32(c32, &b, 1); in read_one_file()
51 (unsigned long)a32, (unsigned long)c32, in read_one_file()
/external/syslinux/com32/menu/
DMakefile22 MODULES = menu.c32 vesamenu.c32
43 rm -f *.lss *.c32 *.com
/external/syslinux/com32/libutil/
DMakefile41 all: libutil.c32 libutil_lnx.a
44 $(LD) $(LDFLAGS) -soname $(patsubst %.elf,%.c32,$(@F)) -o $@ $^
58 rm -f *.lss *.a *.c32 *.com
/external/icu/icu4c/source/test/intltest/
Dutxttest.cpp1031 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1032 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest()
1039 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
1040 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest()
1048 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local
1049 TEST_ASSERT(c32 == pr32Map[i]); in ErrorTest()
1064 UChar32 c32; in ErrorTest() local
1066 U16_GET(buf, 0, extractedLen-extractedLen, extractedLen, c32); in ErrorTest()
1067 TEST_ASSERT(c32 == c32Map[i]); in ErrorTest()
1101 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
[all …]
Dtokiter.cpp88 UChar32 c32 = line.unescapeAt(pos); in nextToken() local
89 if (c32 < 0) { in nextToken()
93 token.append(c32); in nextToken()

123456