HomeSort by: relevance | last modified time | path
    Searched refs:SRC (Results 1 - 25 of 122) sorted by relevancy

1 2 3 4 5

  /src/crypto/external/apache2/openssl/dist/crypto/seed/
seed_local.h 74 #define XOR_SEEDBLOCK(DST, SRC) \
75 ((DST))[0] ^= ((SRC))[0]; \
76 ((DST))[1] ^= ((SRC))[1]; \
77 ((DST))[2] ^= ((SRC))[2]; \
78 ((DST))[3] ^= ((SRC))[3]
80 #define MOV_SEEDBLOCK(DST, SRC) \
81 ((DST))[0] = ((SRC))[0]; \
82 ((DST))[1] = ((SRC))[1]; \
83 ((DST))[2] = ((SRC))[2]; \
84 ((DST))[3] = ((SRC))[3
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/seed/
seed_local.h 75 # define XOR_SEEDBLOCK(DST, SRC) \
76 ((DST))[0] ^= ((SRC))[0]; \
77 ((DST))[1] ^= ((SRC))[1]; \
78 ((DST))[2] ^= ((SRC))[2]; \
79 ((DST))[3] ^= ((SRC))[3]
81 # define MOV_SEEDBLOCK(DST, SRC) \
82 ((DST))[0] = ((SRC))[0]; \
83 ((DST))[1] = ((SRC))[1]; \
84 ((DST))[2] = ((SRC))[2]; \
85 ((DST))[3] = ((SRC))[3
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/seed/
seed_local.h 75 # define XOR_SEEDBLOCK(DST, SRC) \
76 ((DST))[0] ^= ((SRC))[0]; \
77 ((DST))[1] ^= ((SRC))[1]; \
78 ((DST))[2] ^= ((SRC))[2]; \
79 ((DST))[3] ^= ((SRC))[3]
81 # define MOV_SEEDBLOCK(DST, SRC) \
82 ((DST))[0] = ((SRC))[0]; \
83 ((DST))[1] = ((SRC))[1]; \
84 ((DST))[2] = ((SRC))[2]; \
85 ((DST))[3] = ((SRC))[3
    [all...]
  /src/sbin/dmctl/
Makefile 4 SRC= dmctl.c
  /src/crypto/external/bsd/heimdal/dist/lib/sl/
NTMakefile 49 $(C2OBJ) -I$(SRC)\$(RELDIR)
55 $(C2OBJ) -I$(SRC)\$(RELDIR) -DYY_NO_UNISTD_H
72 cd $(SRC)\$(RELDIR)
  /src/tests/lib/libc/atomic/
t_atomic_and.c 40 #define SRC (0xf0f0f0f0f0f0f0f0UL)
55 TYPE src; \
58 src = (TYPE)SRC; \
60 NAME(&val, src); \
84 TYPE src; \
88 src = (TYPE)SRC; \
90 res = NAME(&val, src); \
t_atomic_or.c 40 #define SRC (0xf0f0f0f0f0f0f0f0UL)
55 TYPE src; \
58 src = (TYPE)SRC; \
60 NAME(&val, src); \
84 TYPE src; \
88 src = (TYPE)SRC; \
90 res = NAME(&val, src); \
t___sync_add.c 48 #define SRC (0xf0e0d0c0b0a09081UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t___sync_and.c 48 #define SRC (0xf0f0f0f0f0f0f0f0UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t___sync_nand.c 48 #define SRC (0xf0f0f0f0f0f0f0f0UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t___sync_or.c 48 #define SRC (0xf0f0f0f0f0f0f0f0UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t___sync_sub.c 48 #define SRC (0x1122334455667787UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t___sync_xor.c 48 #define SRC (0xf0f0f0f0f0f0f0f0UL)
60 TYPE src; \
65 src = (TYPE)SRC; \
68 res = NAME(&val, src); \
91 TYPE src; \
95 src = (TYPE)SRC; \
97 res = NAME(&val, src); \
t_atomic_add.c 40 #define SRC (0xf0e0d0c0b0a09081UL)
55 STYPE src; \
58 src = (STYPE)SRC; \
60 NAME(&val, src); \
85 STYPE src; \
89 src = (STYPE)SRC; \
91 res = NAME(&val, src); \
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
common.h 46 #define LOAD64_LE(SRC) load64_le(SRC)
48 load64_le(const uint8_t src[8])
52 memcpy(&w, src, sizeof w);
55 uint64_t w = (uint64_t) src[0];
56 w |= (uint64_t) src[1] << 8;
57 w |= (uint64_t) src[2] << 16;
58 w |= (uint64_t) src[3] << 24;
59 w |= (uint64_t) src[4] << 32;
60 w |= (uint64_t) src[5] << 40
    [all...]
  /src/sys/external/bsd/drm/dist/scripts/
drm-scripts-gentree.pl 43 my $SRC = shift;
227 $f2 =~ s/^\Q$SRC\E/$DESTDIR/;
250 $SRC =~ s|/*$||; $DESTDIR =~ s|/*$||;
252 print "finding files at $SRC\n";
254 find({wanted => \&parse_dir, no_chdir => 1}, $SRC);
  /src/external/bsd/elftoolchain/dist/libelf/
_libelf.h 177 #define LIBELF_COPY_U32(DST, SRC, NAME) do { \
178 if ((SRC)->NAME > UINT32_MAX) { \
182 (DST)->NAME = (SRC)->NAME & 0xFFFFFFFFU; \
185 #define LIBELF_COPY_S32(DST, SRC, NAME) do { \
186 if ((SRC)->NAME > INT32_MAX || \
187 (SRC)->NAME < INT32_MIN) { \
191 (DST)->NAME = (int32_t) (SRC)->NAME; \
  /src/crypto/external/bsd/heimdal/dist/lib/com_err/
NTMakefile 66 $(C2OBJ) -I$(SRC)\$(RELDIR)
69 $(C2OBJ) -I$(SRC)\$(RELDIR) -DYY_NO_UNISTD_H
  /src/crypto/external/bsd/heimdal/dist/packages/windows/installer/
NTMakefile 132 !if [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==19
134 !elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==18
136 !elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==17
138 !elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==16
140 !elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==15
142 !elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==14
197 -dSrcDir=$(SRC) \
240 !if exist($(SRC)\thirdparty\MKShim)
  /src/external/gpl3/binutils/dist/include/opcode/
h8300.h 101 SRC = 0x10000,
127 IMM8 = IMM | SRC | L_8,
128 IMM8U = IMM | SRC | L_8U,
129 IMM16 = IMM | SRC | L_16,
130 IMM16U = IMM | SRC | L_16U,
131 IMM32 = IMM | SRC | L_32,
144 RS8 = SRC | L_8 | REG,
145 RS16 = SRC | L_16 | REG,
146 RS32 = SRC | L_32 | REG,
148 RSP = SRC | L_P | REG
    [all...]
  /src/external/gpl3/binutils.old/dist/include/opcode/
h8300.h 101 SRC = 0x10000,
127 IMM8 = IMM | SRC | L_8,
128 IMM8U = IMM | SRC | L_8U,
129 IMM16 = IMM | SRC | L_16,
130 IMM16U = IMM | SRC | L_16U,
131 IMM32 = IMM | SRC | L_32,
144 RS8 = SRC | L_8 | REG,
145 RS16 = SRC | L_16 | REG,
146 RS32 = SRC | L_32 | REG,
148 RSP = SRC | L_P | REG
    [all...]
  /src/external/gpl3/gdb/dist/include/opcode/
h8300.h 101 SRC = 0x10000,
127 IMM8 = IMM | SRC | L_8,
128 IMM8U = IMM | SRC | L_8U,
129 IMM16 = IMM | SRC | L_16,
130 IMM16U = IMM | SRC | L_16U,
131 IMM32 = IMM | SRC | L_32,
144 RS8 = SRC | L_8 | REG,
145 RS16 = SRC | L_16 | REG,
146 RS32 = SRC | L_32 | REG,
148 RSP = SRC | L_P | REG
    [all...]
  /src/external/gpl3/gdb.old/dist/include/opcode/
h8300.h 101 SRC = 0x10000,
127 IMM8 = IMM | SRC | L_8,
128 IMM8U = IMM | SRC | L_8U,
129 IMM16 = IMM | SRC | L_16,
130 IMM16U = IMM | SRC | L_16U,
131 IMM32 = IMM | SRC | L_32,
144 RS8 = SRC | L_8 | REG,
145 RS16 = SRC | L_16 | REG,
146 RS32 = SRC | L_32 | REG,
148 RSP = SRC | L_P | REG
    [all...]
  /src/common/lib/libc/arch/aarch64/string/
bcopy.S 38 * void *memcpy(void * restrict dst, const void * restrict src, size_t len);
49 * void *memmove(void *dst, const void *src, size_t len);
60 * void bcopy(const void *src, void *dst, size_t len);
76 #define SRC x7
82 #define SRC_ALIGNBIT x11 /* (SRC & 7) * 8 */
106 /* if (len & 4) { *--(uint32_t *)dst = *--(uint32_t *)src; } */
111 /* if (len & 2) { *--(uint16_t *)dst = *--(uint16_t *)src; } */
116 /* if (len & 1) { *--(uint8_t *)dst = *--(uint8_t *)src; } */
128 /* *--(uint64_t *)dst = *--(uint64_t *)src; */
131 /* if (len & 4) { *--(uint32_t *)dst = *--(uint32_t *)src; } */
    [all...]
  /src/external/gpl2/gettext/dist/os2/
Makefile 50 INCLUDE = -I. -I$(ROOT) -I$(ROOT)intl -I$(ROOT)src -I$(ROOT)lib -I$(ROOT)libuniname
105 $(shell sed $(ROOT)src/Makefile.am -ne "/^bin_PROGRAMS =/,/[^\]$$/p"))))
107 SRC.SOURCES = $(filter-out $(addprefix $(ROOT)src/,$(PROGRAMS:.exe=.c)),\
108 $(wildcard $(ROOT)src/*.c))
109 SRC.OBJECTS = $(addprefix $(OUT),$(subst $(ROOT),,$(SRC.SOURCES:.c=.o)))
125 OUTDIRS = $(OUT) $(sort $(dir $(INTL.OBJECTS) $(SRC.OBJECTS) $(LIB.OBJECTS) \
146 # instead a library containing all the object files from src directory, and
149 $(OUT)%.exe: $(OUT)src/%.o $(OUT)util.a $(OUT)uniname.a $(LINKINTL
    [all...]

Completed in 39 milliseconds

1 2 3 4 5