Home
last modified time | relevance | path

Searched refs:_b (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/external/skia/tests/sksl/dslfp/
DGrDSLFPTest_Swizzle.dsl.cpp28 Var _b(kNo_Modifier, DSLType(kBool4_Type), "b", Bool4(true, true, true, true)); in emitCode() local
61 Declare(_b); in emitCode()
62 _b = Bool4(_b.x(), true, true, true); in emitCode()
63 _b = Bool4(Swizzle(_b, X, Y), false, true); in emitCode()
64 _b = Bool4(_b.x(), true, true, false); in emitCode()
65 _b = Bool4(false, _b.y(), true, true); in emitCode()
66 _b = Bool4(Swizzle(_b, X, Y, Z), true); in emitCode()
67 _b = Bool4(Swizzle(_b, X, Y), true, true); in emitCode()
68 _b = Bool4(_b.x(), false, _b.z(), true); in emitCode()
69 _b = Bool4(_b.x(), true, false, false); in emitCode()
[all …]
DGrDSLFPTest_Builtins.dsl.cpp35 Var _b(kNo_Modifier, DSLType(kBool4_Type), "b", Bool4(true)); in emitCode() local
38 Declare(_b); in emitCode()
40 _b.z() = All(Swizzle(_b, X, Y)); in emitCode()
41 _b.w() = Any(Swizzle(_b, X, Y, Z)); in emitCode()
51 Swizzle(_b, X, Y, Z) = Equal(Swizzle(_b, X, X, X), Swizzle(_b, W, W, W)); in emitCode()
57 Swizzle(_b, X, Y) = GreaterThan(Swizzle(_n, X, Y), Swizzle(_n, Z, W)); in emitCode()
58 Swizzle(_b, X, Y) = GreaterThanEqual(Swizzle(_n, X, Y), Swizzle(_n, Z, W)); in emitCode()
62 Swizzle(_b, X, Y) = LessThan(Swizzle(_n, X, Y), Swizzle(_n, Z, W)); in emitCode()
63 Swizzle(_b, X, Y) = LessThanEqual(Swizzle(_n, X, Y), Swizzle(_n, Z, W)); in emitCode()
69 _b = Not(_b); in emitCode()
/external/clang/test/CXX/over/over.oper/over.literal/
Dp3.cpp22 char operator "" _b(); // expected-error {{parameter}}
23 char operator "" _b(const wchar_t *); // expected-error {{parameter}}
24 char operator "" _b(long long); // expected-error {{parameter}}
25 char operator "" _b(double); // expected-error {{parameter}}
26 char operator "" _b(short); // expected-error {{parameter}}
28 char operator "" _b(unsigned short); // expected-error {{parameter}}
29 char operator "" _b(signed char); // expected-error {{parameter}}
30 char operator "" _b(unsigned char); // expected-error {{parameter}}
31 char operator "" _b(const short *, size_t); // expected-error {{parameter}}
32 char operator "" _b(const unsigned short *, size_t); // expected-error {{parameter}}
[all …]
Dp5.cpp15 friend void operator "" _b(); // expected-error {{parameters}}
18 template<char... C, int N = 0> void operator "" _b(); // expected-error {{template}}
19 template<char... C> void operator "" _b(int N = 0); // expected-error {{template}}
20 template<char, char...> void operator "" _b(); // expected-error {{template}}
21 template<typename T> T operator "" _b(const char *); // expected-error {{template}}
22 template<typename T> int operator "" _b(const T *, size_t); // expected-error {{template}}
/external/llvm-project/clang/test/CXX/over/over.oper/over.literal/
Dp3.cpp22 char operator "" _b(); // expected-error {{parameter}}
23 char operator "" _b(const wchar_t *); // expected-error {{parameter}}
24 char operator "" _b(long long); // expected-error {{parameter}}
25 char operator "" _b(double); // expected-error {{parameter}}
26 char operator "" _b(short); // expected-error {{parameter}}
28 char operator "" _b(unsigned short); // expected-error {{parameter}}
29 char operator "" _b(signed char); // expected-error {{parameter}}
30 char operator "" _b(unsigned char); // expected-error {{parameter}}
31 char operator "" _b(const short *, size_t); // expected-error {{parameter}}
32 char operator "" _b(const unsigned short *, size_t); // expected-error {{parameter}}
[all …]
Dp5.cpp15 friend void operator "" _b(); // expected-error {{parameters}}
18 template<char... C, int N = 0> void operator "" _b(); // expected-error {{template}}
19 template<char... C> void operator "" _b(int N = 0); // expected-error {{template}}
20 template<char, char...> void operator "" _b(); // expected-error {{template}}
21 template<typename T> T operator "" _b(const char *); // expected-error {{template}}
22 template<typename T> int operator "" _b(const T *, size_t); // expected-error {{template}}
/external/libdivsufsort/include/
Ddivsufsort_private.h146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) argument
149 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument
152 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument
154 #define STACK_PUSH(_a, _b, _c, _d)\ argument
157 stack[ssize].a = (_a), stack[ssize].b = (_b),\
160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument
163 stack[ssize].a = (_a), stack[ssize].b = (_b),\
166 #define STACK_POP(_a, _b, _c, _d)\ argument
170 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\
173 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument
[all …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/
DMergedStream.java19 private byte[] _b; field in MergedStream
28 _b = buf; in MergedStream()
35 if (_b != null) { in available()
47 if (_b == null) { _in.mark(readlimit); } in mark()
52 return (_b == null) && _in.markSupported(); in markSupported()
56 if (_b != null) { in read()
57 int c = _b[_ptr++] & 0xFF; in read()
72 if (_b != null) { in read()
77 System.arraycopy(_b, _ptr, b, off, len); in read()
89 if (_b == null) { _in.reset(); } in reset()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DByteBufferBackedInputStream.java12 protected final ByteBuffer _b; field in ByteBufferBackedInputStream
14 public ByteBufferBackedInputStream(ByteBuffer buf) { _b = buf; } in ByteBufferBackedInputStream()
16 @Override public int available() { return _b.remaining(); } in available()
19 public int read() throws IOException { return _b.hasRemaining() ? (_b.get() & 0xFF) : -1; } in read()
23 if (!_b.hasRemaining()) return -1; in read()
24 len = Math.min(len, _b.remaining()); in read()
25 _b.get(bytes, off, len); in read()
DByteBufferBackedOutputStream.java11 protected final ByteBuffer _b; field in ByteBufferBackedOutputStream
13 public ByteBufferBackedOutputStream(ByteBuffer buf) { _b = buf; } in ByteBufferBackedOutputStream()
15 @Override public void write(int b) throws IOException { _b.put((byte) b); } in write()
16 …@Override public void write(byte[] bytes, int off, int len) throws IOException { _b.put(bytes, off… in write()
/external/ltp/include/
Dtst_minmax.h24 typeof(b) _b = (b); \
25 _a < _b ? _a : _b; \
32 typeof(b) _b = (b); \
33 _a > _b ? _a : _b; \
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedRangeException.cs42 private readonly int _b; field in Antlr.Runtime.MismatchedRangeException
58 this._b = b; in MismatchedRangeException()
64 this._b = b; in MismatchedRangeException()
70 this._b = b; in MismatchedRangeException()
79 this._b = info.GetInt32("B"); in MismatchedRangeException()
90 return _b;
100 info.AddValue("B", _b); in GetObjectData()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedRangeException.cs44 private readonly int _b; field in Antlr.Runtime.MismatchedRangeException
64 this._b = b; in MismatchedRangeException()
71 this._b = b; in MismatchedRangeException()
78 this._b = b; in MismatchedRangeException()
88 this._b = info.GetInt32("B"); in MismatchedRangeException()
103 return _b;
114 info.AddValue("B", _b); in GetObjectData()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Dmsg.c143 static void _upb_mapsorter_getkeys(const void *_a, const void *_b, void *a_key, in _upb_mapsorter_getkeys() argument
146 const upb_tabent *const*b = _b; in _upb_mapsorter_getkeys()
153 static int _upb_mapsorter_cmpi64(const void *_a, const void *_b) { in _upb_mapsorter_cmpi64() argument
155 _upb_mapsorter_getkeys(_a, _b, &a, &b, 8); in _upb_mapsorter_cmpi64()
159 static int _upb_mapsorter_cmpu64(const void *_a, const void *_b) { in _upb_mapsorter_cmpu64() argument
161 _upb_mapsorter_getkeys(_a, _b, &a, &b, 8); in _upb_mapsorter_cmpu64()
165 static int _upb_mapsorter_cmpi32(const void *_a, const void *_b) { in _upb_mapsorter_cmpi32() argument
167 _upb_mapsorter_getkeys(_a, _b, &a, &b, 4); in _upb_mapsorter_cmpi32()
171 static int _upb_mapsorter_cmpu32(const void *_a, const void *_b) { in _upb_mapsorter_cmpu32() argument
173 _upb_mapsorter_getkeys(_a, _b, &a, &b, 4); in _upb_mapsorter_cmpu32()
[all …]
/external/llvm-project/compiler-rt/test/BlocksRuntime/
Dbyrefcopycopy.c22 __typeof(b) _b; in main() local
28 _b = Block_copy(b); // make a new copy each time in main()
29 assert(_b); in main()
31 _b(); // should still update the stack in main()
32 Block_release(_b); in main()
/external/compiler-rt/test/BlocksRuntime/
Dbyrefcopycopy.c23 __typeof(b) _b; in main() local
29 _b = Block_copy(b); // make a new copy each time in main()
30 assert(_b); in main()
32 _b(); // should still update the stack in main()
33 Block_release(_b); in main()
/external/tremolo/Tremolo/
Dmisc.h157 #define XPROD32(_a, _b, _t, _v, _x, _y) \ argument
158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \ argument
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \ argument
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
/external/llvm-project/llvm/test/MC/MachO/
Dreloc-pcrel.s8 _b: label
21 call _b
22 call _b - 1
23 call _b + 1
28 call _b - L0
/external/llvm/test/MC/MachO/
Dreloc-pcrel.s8 _b: label
21 call _b
22 call _b - 1
23 call _b + 1
28 call _b - L0
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DMultiArgConstructorTest.java17 protected int _a, _b; field in MultiArgConstructorTest.MultiArgCtorBean
23 _b = b; in MultiArgCtorBean()
29 protected int _a, _b; field in MultiArgConstructorTest.MultiArgCtorBeanWithAnnotations
35 _b = b; in MultiArgCtorBeanWithAnnotations()
73 assertEquals(13, bean._b); in testMultiArgVisible()
86 assertEquals(7, bean._b); in testMultiArgWithPartialOverride()
/external/fsverity-utils/common/
Dcommon_defs.h48 __typeof__(b) _b = (b); \
49 _a < _b ? _a : _b; \
54 __typeof__(b) _b = (b); \
55 _a > _b ? _a : _b; \
/external/mesa3d/src/freedreno/rnn/
Dutil.h73 typeof (b) _b = (b); \
74 _a < _b ? _a : _b; \
80 typeof (b) _b = (b); \
81 _a > _b ? _a : _b; \
/external/avb/proto/
Dapi_pb2.py6 _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) variable
23 serialized_options=_b('Z\005proto'),
24 …serialized_pb=_b('\n\tapi.proto\x12\x04\x61\x66tl\x1a\x0etrillian.proto\"V\n\x0eInclusionProof\x12…
79 has_default_value=False, default_value=_b(""),
86 has_default_value=False, default_value=_b(""),
124 has_default_value=False, default_value=_b(""),
138 has_default_value=False, default_value=_b(""),
169 has_default_value=False, default_value=_b(""),
176 has_default_value=False, default_value=_b(""),
183 has_default_value=False, default_value=_b("").decode('utf-8'),
[all …]
/external/adhd/cras/src/dsp/
Ddrc_math.h46 __typeof__(b) _b = (b); \
47 _a > _b ? _a : _b; \
55 __typeof__(b) _b = (b); \
56 _a < _b ? _a : _b; \
/external/autotest/server/hosts/drone_api_client/
Dcommon_pb2.py5 _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) variable
22 serialized_options=_b('Z1go.chromium.org/chromiumos/config/go/api/test/tls'),
23 …serialized_pb=_b('\n\x0c\x63ommon.proto\x12\x1e\x63hromiumos.config.api.test.tls\"\xc3\x01\n\x15\x…
64 has_default_value=False, default_value=_b("").decode('utf-8'),
71 has_default_value=False, default_value=_b("").decode('utf-8'),
85 has_default_value=False, default_value=_b(""),
151 has_default_value=False, default_value=_b("").decode('utf-8'),
188 has_default_value=False, default_value=_b(""),
195 has_default_value=False, default_value=_b(""),

12345678910>>...13