Home
last modified time | relevance | path

Searched defs:A (Results 251 – 275 of 88610) sorted by relevance

1...<<11121314151617181920>>...3545

/dports/databases/mariadb104-client/mariadb-10.4.24/include/
H A Dbyte_order_generic.h21 #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) |\ argument
23 #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \ argument
31 #define sint4korr(A) (int32) (((uint32) ((uchar) (A)[0])) |\ argument
35 #define sint8korr(A) (longlong) uint8korr(A) argument
36 #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) |\ argument
38 #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
41 #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
45 #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) |\ argument
65 #define int2store(T,A) do { uint def_temp= (uint) (A) ;\ argument
69 #define int3store(T,A) do { /*lint -save -e734 */\ argument
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/include/
H A Dbyte_order_generic.h21 #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) |\ argument
23 #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \ argument
31 #define sint4korr(A) (int32) (((int32) ((uchar) (A)[0])) |\ argument
35 #define sint8korr(A) (longlong) uint8korr(A) argument
36 #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) |\ argument
38 #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
41 #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
45 #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) |\ argument
65 #define int2store(T,A) do { uint def_temp= (uint) (A) ;\ argument
69 #define int3store(T,A) do { /*lint -save -e734 */\ argument
[all …]
/dports/databases/mysql56-client/mysql-5.6.51/include/
H A Dbyte_order_generic.h27 #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) +\ argument
29 #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \ argument
37 #define sint4korr(A) (int32) (((int32) ((uchar) (A)[0])) +\ argument
41 #define sint8korr(A) (longlong) uint8korr(A) argument
42 #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) +\ argument
44 #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +\ argument
47 #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +\ argument
51 #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +\ argument
71 #define int2store(T,A) do { uint def_temp= (uint) (A) ;\ argument
75 #define int3store(T,A) do { /*lint -save -e734 */\ argument
[all …]
H A Dbyte_order_generic_x86_64.h31 #define sint2korr(A) (int16) (*((int16 *) (A))) argument
40 #define sint4korr(A) (int32) (*((int32 *) (A))) argument
41 #define uint2korr(A) (uint16) (*((uint16 *) (A))) argument
45 #define uint4korr(A) (uint32) (*((uint32 *) (A))) argument
57 #define uint8korr(A) (ulonglong) (*((ulonglong *) (A))) argument
58 #define sint8korr(A) (longlong) (*((longlong *) (A))) argument
60 #define int2store(T,A) do { uchar *pT= (uchar*)(T);\ argument
64 #define int3store(T,A) do { *(T)= (uchar) ((A));\ argument
68 #define int4store(T,A) do { uchar *pT= (uchar*)(T);\ argument
72 #define int5store(T,A) do { *(T)= (uchar)((A));\ argument
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/include/
H A Dbyte_order_generic.h21 #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) |\ argument
23 #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \ argument
31 #define sint4korr(A) (int32) (((uint32) ((uchar) (A)[0])) |\ argument
35 #define sint8korr(A) (longlong) uint8korr(A) argument
36 #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) |\ argument
38 #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
41 #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) |\ argument
45 #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) |\ argument
65 #define int2store(T,A) do { uint def_temp= (uint) (A) ;\ argument
69 #define int3store(T,A) do { /*lint -save -e734 */\ argument
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/parser/
H A Dbounds-lifetime.rs1 type A = for<'a:> fn(); // OK typedef
2 type A = for<'a:,> fn(); // OK typedef
3 type A = for<'a> fn(); // OK typedef
4 type A = for<> fn(); // OK typedef
5 type A = for<'a: 'b + 'c> fn(); // OK (rejected later by ast_validation) typedef
6 type A = for<'a: 'b,> fn(); // OK(rejected later by ast_validation) typedef
7 type A = for<'a: 'b +> fn(); // OK (rejected later by ast_validation) typedef
8 type A = for<'a, T> fn(); // OK (rejected later by ast_validation) typedef
9 type A = for<,> fn(); //~ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime typedef
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/common/simd/neon/
H A Dreorder.h21 #define npyv_combinel_u8(A, B) vcombine_u8(vget_low_u8(A), vget_low_u8(B)) argument
22 #define npyv_combinel_s8(A, B) vcombine_s8(vget_low_s8(A), vget_low_s8(B)) argument
23 #define npyv_combinel_u16(A, B) vcombine_u16(vget_low_u16(A), vget_low_u16(B)) argument
24 #define npyv_combinel_s16(A, B) vcombine_s16(vget_low_s16(A), vget_low_s16(B)) argument
25 #define npyv_combinel_u32(A, B) vcombine_u32(vget_low_u32(A), vget_low_u32(B)) argument
26 #define npyv_combinel_s32(A, B) vcombine_s32(vget_low_s32(A), vget_low_s32(B)) argument
27 #define npyv_combinel_u64(A, B) vcombine_u64(vget_low_u64(A), vget_low_u64(B)) argument
28 #define npyv_combinel_s64(A, B) vcombine_s64(vget_low_s64(A), vget_low_s64(B)) argument
29 #define npyv_combinel_f32(A, B) vcombine_f32(vget_low_f32(A), vget_low_f32(B)) argument
45 #define npyv_combineh_u8(A, B) vcombine_u8(vget_high_u8(A), vget_high_u8(B)) argument
[all …]
/dports/lang/elixir-devel/elixir-1.13.1/lib/mix/test/mix/tasks/
H A Dcompile.elixir_test.exs76 defmodule A do module
102 defmodule A do module
144 defmodule A do module
160 defmodule A do module
186 defmodule A do module
273 defmodule A do module
333 defmodule A do module
414 defmodule A do module
736 defmodule A do module
782 defmodule A do module
[all …]
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Dfn_trig.hpp44 cos(const T1& A) in cos()
73 acos(const T1& A) in acos()
102 cosh(const T1& A) in cosh()
131 acosh(const T1& A) in acosh()
160 sin(const T1& A) in sin()
189 asin(const T1& A) in asin()
218 sinh(const T1& A) in sinh()
276 tan(const T1& A) in tan()
305 atan(const T1& A) in atan()
334 tanh(const T1& A) in tanh()
[all …]
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Dfn_trig.hpp44 cos(const T1& A) in cos()
73 acos(const T1& A) in acos()
102 cosh(const T1& A) in cosh()
131 acosh(const T1& A) in acosh()
160 sin(const T1& A) in sin()
189 asin(const T1& A) in asin()
218 sinh(const T1& A) in sinh()
276 tan(const T1& A) in tan()
305 atan(const T1& A) in atan()
334 tanh(const T1& A) in tanh()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/warn/
H A DWaddress-7.C5 struct A struct
31 /* __attribute__ ((weak)) static */ int A::smi_def = 0; argument
/dports/ftp/pure-ftpd/pure-ftpd-1.0.50/src/
H A Dfakechroot.h10 # define chroot(A) fakechroot(A) argument
16 # define getcwd(A, B) fakegetcwd(A, B) argument
22 # define chdir(A) fakechdir(A) argument
28 # define stat(A, B) fakestat(A, B) argument
34 # define lstat(A, B) fakelstat(A, B) argument
40 # define fopen(A, B) fakefopen(A, B) argument
52 # define unlink(A) fakeunlink(A) argument
58 # define opendir(A) fakeopendir(A) argument
64 # define chmod(A, B) fakechmod(A, B) argument
76 # define rmdir(A) fakermdir(A) argument
[all …]
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/alphanumeric-sort-1.4.3/src/
H A Dlib.rs282 pub fn sort_slice_by_str_key<A, T: ?Sized + AsRef<str>, F: FnMut(&A) -> &T>( in sort_slice_by_str_key()
300 pub fn sort_slice_rev_by_str_key<A, T: ?Sized + AsRef<str>, F: FnMut(&A) -> &T>( in sort_slice_rev_by_str_key()
325 pub fn sort_slice_by_os_str_key<A, T: ?Sized + AsRef<OsStr>, F: FnMut(&A) -> &T>( in sort_slice_by_os_str_key()
368 fn sort_slice_by_os_str_key_inner<A, T: ?Sized + AsRef<OsStr>, F: FnMut(&A) -> &T>( in sort_slice_by_os_str_key_inner()
420 A, in sort_slice_rev_unstable_by_os_str_key_fallback()
424 slice: &mut [A], in sort_slice_rev_unstable_by_os_str_key_fallback()
457 pub fn sort_slice_by_c_str_key<A, T: ?Sized + AsRef<CStr>, F: FnMut(&A) -> &T>( in sort_slice_by_c_str_key()
500 fn sort_slice_by_c_str_key_inner<A, T: ?Sized + AsRef<CStr>, F: FnMut(&A) -> &T>( in sort_slice_by_c_str_key_inner()
585 pub fn sort_slice_by_path_key<A, T: ?Sized + AsRef<Path>, F: FnMut(&A) -> &T>( in sort_slice_by_path_key()
615 pub fn sort_slice_rev_by_path_key<A, T: ?Sized + AsRef<Path>, F: FnMut(&A) -> &T>( in sort_slice_rev_by_path_key()
[all …]
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/gogo/protobuf/protobuf-65acae22fc9d/vanity/test/fast/
H A Dvanity.pb.go26 type A struct { struct
29 XXX_NoUnkeyedLiteral struct{} `json:"-"`
30 XXX_unrecognized []byte `json:"-"`
31 XXX_sizecache int32 `json:"-"`
34 func (m *A) Reset() { *m = A{} }
36 func (*A) ProtoMessage() {}
37 func (*A) Descriptor() ([]byte, []int) {
55 func (m *A) XXX_Merge(src proto.Message) {
58 func (m *A) XXX_Size() int {
82 proto.RegisterType((*A)(nil), "vanity.A")
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/github.com/gogo/protobuf/vanity/test/fast/
H A Dvanity.pb.go26 type A struct { struct
29 XXX_NoUnkeyedLiteral struct{} `json:"-"`
30 XXX_unrecognized []byte `json:"-"`
31 XXX_sizecache int32 `json:"-"`
34 func (m *A) Reset() { *m = A{} }
36 func (*A) ProtoMessage() {}
37 func (*A) Descriptor() ([]byte, []int) {
55 func (m *A) XXX_Merge(src proto.Message) {
58 func (m *A) XXX_Size() int {
82 proto.RegisterType((*A)(nil), "vanity.A")
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/gogo/protobuf/protobuf-65acae22fc9d/vanity/test/fast/
H A Dvanity.pb.go26 type A struct { struct
29 XXX_NoUnkeyedLiteral struct{} `json:"-"`
30 XXX_unrecognized []byte `json:"-"`
31 XXX_sizecache int32 `json:"-"`
34 func (m *A) Reset() { *m = A{} }
36 func (*A) ProtoMessage() {}
37 func (*A) Descriptor() ([]byte, []int) {
55 func (m *A) XXX_Merge(src proto.Message) {
58 func (m *A) XXX_Size() int {
82 proto.RegisterType((*A)(nil), "vanity.A")
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/gogo/protobuf/vanity/test/fast/
H A Dvanity.pb.go26 type A struct { struct
29 XXX_NoUnkeyedLiteral struct{} `json:"-"`
30 XXX_unrecognized []byte `json:"-"`
31 XXX_sizecache int32 `json:"-"`
34 func (m *A) Reset() { *m = A{} }
36 func (*A) ProtoMessage() {}
37 func (*A) Descriptor() ([]byte, []int) {
55 func (m *A) XXX_Merge(src proto.Message) {
58 func (m *A) XXX_Size() int {
82 proto.RegisterType((*A)(nil), "vanity.A")
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() argument
9 A(double) {} in A() argument
10 A(double, double) {} in A() function
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() argument
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() argument
9 A(double) {} in A() function
10 A(double, double) {} in A() function
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() argument
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() argument
9 A(double) {} in A() function
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() function
12 A(int, double) {} in A() function
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() function
9 A(double) {} in A() argument
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() function
12 A(int, double) {} in A() argument
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() function
9 A(double) {} in A() argument
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() argument
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() function
9 A(double) {} in A() argument
10 A(double, double) {} in A() function
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() function
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() argument
9 A(double) {} in A() function
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() argument
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h5 struct A { struct
7 A(I i1, I i2) { in A() function
9 A(double) {} in A() argument
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() function

1...<<11121314151617181920>>...3545