/u-boot/post/lib_powerpc/fpu/ |
A D | darwin-ldouble.c | 52 double z, q, zz, xh; in __gcc_qadd() local 54 z = a + c; in __gcc_qadd() 56 if (nonfinite(z)) { in __gcc_qadd() 58 if (nonfinite(z)) in __gcc_qadd() 59 return z; in __gcc_qadd() 67 q = a - z; in __gcc_qadd() 72 return z; in __gcc_qadd() 74 xh = z + zz; in __gcc_qadd() 91 longDblUnion z; in __gcc_qmul() local 116 z.dval[0] = u; in __gcc_qmul() [all …]
|
/u-boot/drivers/mtd/nand/raw/ |
A D | octeontx_bch.h | 28 #define BCH_VQX_CTL(z) 0x0ull argument 29 #define BCH_VQX_CMD_BUF(z) 0x8ull argument 30 #define BCH_VQX_CMD_PTR(z) 0x20ull argument 31 #define BCH_VQX_DOORBELL(z) 0x800ull argument
|
/u-boot/arch/arm/mach-keystone/include/mach/ |
A D | psc_defs.h | 36 static inline u32 boot_read_bitfield(u32 z, u32 x, u32 y) in boot_read_bitfield() argument 38 u32 val = z & _boot_bit_mask(x, y); in boot_read_bitfield() 42 static inline u32 boot_set_bitfield(u32 z, u32 f, u32 x, u32 y) in boot_set_bitfield() argument 46 return (z & ~mask) | ((f << y) & mask); in boot_set_bitfield()
|
/u-boot/fs/zfs/ |
A D | zfs_sha256.c | 49 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 50 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) argument
|
/u-boot/lib/ |
A D | md5.c | 168 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument 169 #define F2(x, y, z) F1(z, x, y) argument 170 #define F3(x, y, z) (x ^ y ^ z) argument 171 #define F4(x, y, z) (y ^ (x | ~z)) argument 174 #define MD5STEP(f, w, x, y, z, data, s) \ argument 175 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
|
A D | sha1.c | 107 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() argument 134 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument 161 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() argument 188 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument
|
A D | bch.c | 852 z->deg = 1; in compute_trace_bk_mod() 853 z->c[0] = 0; in compute_trace_bk_mod() 854 z->c[1] = bch->a_pow_tab[k]; in compute_trace_bk_mod() 864 for (j = z->deg; j >= 0; j--) { in compute_trace_bk_mod() 865 out->c[j] ^= z->c[j]; in compute_trace_bk_mod() 866 z->c[2*j] = gf_sqr(bch, z->c[j]); in compute_trace_bk_mod() 867 z->c[2*j+1] = 0; in compute_trace_bk_mod() 869 if (z->deg > out->deg) in compute_trace_bk_mod() 870 out->deg = z->deg; in compute_trace_bk_mod() 873 z->deg *= 2; in compute_trace_bk_mod() [all …]
|
A D | sha512.c | 53 static inline uint64_t Ch(uint64_t x, uint64_t y, uint64_t z) in Ch() argument 55 return z ^ (x & (y ^ z)); in Ch() 58 static inline uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) in Maj() argument 60 return (x & y) | (z & (x | y)); in Maj()
|
/u-boot/board/siemens/common/ |
A D | factoryset.c | 101 int z; in get_factory_record_val() local 112 for (z = pos; fact_get_char(z) != end; z++) { in get_factory_record_val() 113 if (fact_get_char(z) == '<') { in get_factory_record_val() 115 endpos = z; in get_factory_record_val() 123 if (fact_get_char(z) == '>') in get_factory_record_val()
|
/u-boot/doc/chromium/devkeys/ |
A D | kernel.keyblock | 3 …z�a��d�I����9����X�6���Lq�x���/�� M���?��Y��`���f�{�I�o{$�H��a��哇 :�T��)��ܯ��bĶ�/�T:�^… 4 …�� ���^r�ƝA���tF�%)'f�\������^�U��.f*a��A�T���&[w|��h����بO���塈z�Ř4�cU����K���Eڤ��…
|
/u-boot/drivers/video/ |
A D | stb_truetype.h | 1680 if (!z) return z; in stbtt__new_active() 1691 z->ey = e->y1; in stbtt__new_active() 1692 z->next = 0; in stbtt__new_active() 1694 return z; in stbtt__new_active() 1702 if (!z) return z; in stbtt__new_active() 1703 z->fdx = dxdy; in stbtt__new_active() 1708 z->sy = e->y0; in stbtt__new_active() 1709 z->ey = e->y1; in stbtt__new_active() 1710 z->next = 0; in stbtt__new_active() 1711 return z; in stbtt__new_active() [all …]
|
/u-boot/lib/bzip2/ |
A D | bzlib_huffman.c | 74 #define UPHEAP(z) \ argument 77 zz = z; tmp = heap[zz]; \ 85 #define DOWNHEAP(z) \ argument 88 zz = z; tmp = heap[zz]; \
|
A D | bzlib_decompress.c | 473 Int32 z = pp+nn; in BZ2_decompress() local 474 s->mtfa[(z) ] = s->mtfa[(z)-1]; in BZ2_decompress() 475 s->mtfa[(z)-1] = s->mtfa[(z)-2]; in BZ2_decompress() 476 s->mtfa[(z)-2] = s->mtfa[(z)-3]; in BZ2_decompress() 477 s->mtfa[(z)-3] = s->mtfa[(z)-4]; in BZ2_decompress()
|
/u-boot/arch/mips/mach-octeon/include/mach/ |
A D | octeon-model.h | 217 typeof(Z) z = (Z); \ 218 (x & z) == (y & z); \
|
/u-boot/drivers/soc/ti/ |
A D | keystone_serdes.c | 30 #define SERDES_LANE_EN_VAL(x, y, z) (x[y] | (z << 26) | (z << 10)) argument
|
/u-boot/lib/lzma/ |
A D | lzma.txt | 7 LZMA is default and general compression method of 7z format 52 7zFormat.txt - 7z Format description 53 7zC.txt - 7z ANSI-C Decoder description 54 methods.txt - Compression method IDs for .7z 56 7zr.exe - 7-Zip with 7z/lzma/xz support. 81 7z - 7z ANSI-C Decoder 97 7z - 7z C++ Encoder/Decoder 101 Alone7z - 7zr.exe: Standalone version of 7z.exe that supports only 7z/LZMA/BCJ/BCJ2 280 7z a a1.7z a.bin -m0=lzma 283 7z a a2.7z a.bin -m0=arm -m1=lzma [all …]
|
A D | history.txt | 30 - Some changes in ANSI-C 7z Decoder interfaces. 54 - Some changes in ANSI-C 7z Decoder interfaces. 85 - .7z ANSI-C Decoder: 89 - C++ code for .7z archives compressing/decompressing from 7-zip 141 - 7z_C: .7z format supporting was improved 208 - Simplified version of .7z ANSI-C Decoder was included
|
/u-boot/include/linux/ |
A D | kernel.h | 193 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument 194 #define max3(x, y, z) max((typeof(x))max(x, y), z) argument
|
/u-boot/arch/arm/dts/ |
A D | am335x-chiliboard-u-boot.dtsi | 3 * Copyright (C) 2018 Grinn Sp. z o.o. -- http://www.grinn-global.com/
|
A D | meson-g12-common.dtsi | 552 i2c2_sda_z_pins: i2c2-sda-z { 561 i2c2_sck_z_pins: i2c2-sck-z { 633 mclk1_z_pins: mclk1-z { 677 pdm_din0_z_pins: pdm-din0-z { 709 pdm_din1_z_pins: pdm-din1-z { 741 pdm_din2_z_pins: pdm-din2-z { 773 pdm_din3_z_pins: pdm-din3-z { 808 pdm_dclk_z_pins: pdm-dclk-z { 1285 tdm_c_din0_z_pins: tdm-c-din0-z { 1301 tdm_c_din1_z_pins: tdm-c-din1-z { [all …]
|
A D | stm32f429-disco.dts | 95 /* 7 length fractional part in z */ 96 st,fraction-z = <7>;
|
/u-boot/lib/rsa/ |
A D | rsa-keyprop.c | 109 uint32_t z; in GT() local 111 z = y - x; in GT() 112 return (z ^ ((x ^ y) & (x ^ z))) >> 31; in GT() 462 static void br_i32_muladd_small(uint32_t *x, uint32_t z, const uint32_t *m) in br_i32_muladd_small() argument 479 x[1] = br_rem(x[1], z, m[1]); in br_i32_muladd_small() 513 x[1] = z; in br_i32_muladd_small()
|
/u-boot/lib/libavb/ |
A D | avb_sha256.c | 16 #define CH(x, y, z) ((x & y) ^ (~x & z)) argument 17 #define MAJ(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) argument
|
A D | avb_sha512.c | 16 #define CH(x, y, z) ((x & y) ^ (~x & z)) argument 17 #define MAJ(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) argument
|
/u-boot/include/jffs2/ |
A D | load_kernel.h | 62 #define led_blink(x, y, z, a) argument
|