HomeSort by: relevance | last modified time | path
    Searched defs:const (Results 1 - 25 of 134) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
full-write.c 35 # undef const macro
36 # define const /* empty */ macro
60 full_rw (int fd, const void *buf, size_t count)
63 const char *ptr = buf;
safe-read.c 49 # undef const macro
50 # define const /* empty */ macro
57 safe_rw (int fd, void const *buf, size_t count)
  /src/external/bsd/ipf/dist/
md5.h 52 # undef const macro
53 # define const macro
  /src/external/gpl2/mkhybrid/dist/
getopt1.c 35 reject `defined (const)'. */
36 #ifndef const macro
37 #define const
77 char *const *argv;
78 const char *options;
79 const struct option *long_options;
  /src/external/gpl3/gcc/dist/gcc/
escaped_string.h 34 operator const char *() const { return m_str; }
35 void escape (const char *);
37 escaped_string(const escaped_string&) {}
38 escaped_string& operator=(const escaped_string&) { return *this; }
  /src/external/gpl3/gcc.old/dist/gcc/
escaped_string.h 34 operator const char *() const { return m_str; }
35 void escape (const char *);
37 escaped_string(const escaped_string&) {}
38 escaped_string& operator=(const escaped_string&) { return *this; }
  /src/external/bsd/elftosb/dist/common/
Value.h 27 virtual std::string getTypeName() const = 0;
28 virtual size_t getSize() const = 0;
39 IntegerValue(const IntegerValue & other) : m_value(other.m_value) {}
41 virtual std::string getTypeName() const { return "integer"; }
42 virtual size_t getSize() const { return sizeof(m_value); }
44 inline uint32_t getValue() const { return m_value; }
46 inline operator uint32_t () const { return m_value; }
71 SizedIntegerValue(const SizedIntegerValue & other) : IntegerValue(other), m_size(other.m_size) {}
73 virtual std::string getTypeName() const { return "sized integer"; }
74 virtual size_t getSize() const;
    [all...]
AESKey.h 31 void _writeToStream(std::ostream & stream, unsigned bytes, const uint8_t * buffer);
67 AESKey(const key_t & key)
73 AESKey(const key_t * key)
85 AESKey(const AESKey<S> & other)
119 inline const key_t & getKey() const { return m_key; }
120 inline void getKey(key_t * key) const { memcpy(key, m_key, sizeof(m_key)); }
122 inline void setKey(const key_t & key) { memcpy(m_key, &key, sizeof(m_key)); }
123 inline void setKey(const key_t * key) { memcpy(m_key, key, sizeof(m_key)); }
124 inline void setKey(const AESKey<S> & key) { memcpy(m_key, key.m_key, sizeof(m_key));
    [all...]
Blob.h 25 Blob(const uint8_t * data, unsigned length);
28 Blob(const Blob & other);
36 void setData(const uint8_t * data, unsigned length);
42 void append(const uint8_t * newData, unsigned newDataLength);
54 const uint8_t * getData() const { return m_data; }
55 unsigned getLength() const { return m_length; }
61 operator const uint8_t * () const { return m_data; }
  /src/sys/arch/x68k/stand/aout2hux/
type_local.h 11 # ifndef const
12 # define const macro
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getopt.c 37 #define const macro
60 getopt(int nargc, char * const *nargv, const char *ostr)
  /src/crypto/external/bsd/openssl/dist/crypto/perlasm/
x86_64-xlate.pl 241 { package const; # pick up constants, which start with $
641 sub const {
679 push @ret,const($i);
1229 ($arg=const->re(\$line)) ||
640 sub const { subroutine
  /src/crypto/external/bsd/openssl.old/dist/crypto/perlasm/
x86_64-xlate.pl 187 { package const; # pick up constants, which start with $
587 sub const {
625 push @ret,const($i);
1175 ($arg=const->re(\$line)) ||
586 sub const { subroutine
  /src/external/bsd/ipf/dist/lib/
kmem.c 42 # define const macro
46 static __attribute__((__used__)) const char sccsid[] = "@(#)kmem.c 1.4 1/12/96 (C) 1992 Darren Reed";
47 static __attribute__((__used__)) const char rcsid[] = "@(#)Id: kmem.c,v 1.1.1.2 2012/07/22 13:44:39 darrenr Exp $";
  /src/external/gpl2/diffutils/dist/lib/
getopt1.c 31 reject `defined (const)'. */
32 #ifndef const macro
33 #define const
71 char *const *argv;
72 const char *options;
73 const struct option *long_options;
87 char *const *argv;
88 const char *options;
89 const struct option *long_options;
  /src/external/gpl2/gmake/dist/
getopt1.c 32 reject `defined (const)'. */
33 #ifndef const macro
34 #define const
66 getopt_long (int argc, char *const *argv, const char *options,
67 const struct option *long_options, int *opt_index)
78 getopt_long_only (int argc, char *const *argv, const char *options,
79 const struct option *long_options, int *opt_index)
  /src/external/gpl2/grep/dist/lib/
getopt1.c 29 reject `defined (const)'. */
30 #ifndef const macro
31 #define const
72 char *const *argv;
73 const char *options;
74 const struct option *long_options;
88 char *const *argv;
89 const char *options;
90 const struct option *long_options;
  /src/external/gpl3/binutils/dist/libiberty/
fnmatch.c 37 /* This code to undef const added in libiberty. */
40 reject `defined (const)'. */
41 #ifndef const
42 #define const macro
68 fnmatch (const char *pattern, const char *string, int flags)
70 register const char *p = pattern, *n = string;
getopt1.c 29 reject `defined (const)'. */
30 #ifndef const macro
31 #define const
69 getopt_long (int argc, char *const *argv, const char *options,
70 const struct option *long_options, int *opt_index)
81 getopt_long_only (int argc, char *const *argv, const char *options,
82 const struct option *long_options, int *opt_index)
  /src/external/gpl3/binutils.old/dist/libiberty/
fnmatch.c 37 /* This code to undef const added in libiberty. */
40 reject `defined (const)'. */
41 #ifndef const
42 #define const macro
68 fnmatch (const char *pattern, const char *string, int flags)
70 register const char *p = pattern, *n = string;
getopt1.c 29 reject `defined (const)'. */
30 #ifndef const macro
31 #define const
69 getopt_long (int argc, char *const *argv, const char *options,
70 const struct option *long_options, int *opt_index)
81 getopt_long_only (int argc, char *const *argv, const char *options,
82 const struct option *long_options, int *opt_index)
  /src/external/gpl3/gcc/dist/libiberty/
fnmatch.c 37 /* This code to undef const added in libiberty. */
40 reject `defined (const)'. */
41 #ifndef const
42 #define const macro
68 fnmatch (const char *pattern, const char *string, int flags)
70 register const char *p = pattern, *n = string;
getopt1.c 29 reject `defined (const)'. */
30 #ifndef const macro
31 #define const
69 getopt_long (int argc, char *const *argv, const char *options,
70 const struct option *long_options, int *opt_index)
81 getopt_long_only (int argc, char *const *argv, const char *options,
82 const struct option *long_options, int *opt_index)
  /src/external/gpl3/gcc.old/dist/libiberty/
fnmatch.c 37 /* This code to undef const added in libiberty. */
40 reject `defined (const)'. */
41 #ifndef const
42 #define const macro
68 fnmatch (const char *pattern, const char *string, int flags)
70 register const char *p = pattern, *n = string;
getopt1.c 29 reject `defined (const)'. */
30 #ifndef const macro
31 #define const
69 getopt_long (int argc, char *const *argv, const char *options,
70 const struct option *long_options, int *opt_index)
81 getopt_long_only (int argc, char *const *argv, const char *options,
82 const struct option *long_options, int *opt_index)

Completed in 41 milliseconds

1 2 3 4 5 6