Home
last modified time | relevance | path

Searched full:between (Results 1 – 25 of 8005) sorted by relevance

12345678910>>...321

/third_party/mbedtls/
D.uncrustify.cfg13 # Allow splitting long for statements between the condition statements
16 # Allow splitting function calls between arguments
48 # If else is on the same line as '{', force exactly 1 space between them
55 # Force exactly one space between ')' and '{' in statements
85 # No space between the '++'/'--' operator and its operand
113 # Remove spaces between nested parentheses '( (' -> '(('
118 # Remove spaces between ')' and adjacent '('
121 # (Uncrustify >= 0.73.0) space between 'do' and '{'
124 # (Uncrustify >= 0.73.0) space between '}' and 'while'
130 # Remove spaces between pointer stars
[all …]
/third_party/rust/rust/tests/ui/sync/
Dsuggest-cell.rs13 //~^ ERROR `Cell<()>` cannot be shared between threads safely in main()
14 //~| NOTE `Cell<()>` cannot be shared between threads safely in main()
15 …//~| NOTE if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` in main()
18 //~^ ERROR `Cell<u8>` cannot be shared between threads safely in main()
19 //~| NOTE `Cell<u8>` cannot be shared between threads safely in main()
20 …//~| NOTE if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock… in main()
23 //~^ ERROR `Cell<i32>` cannot be shared between threads safely in main()
24 //~| NOTE `Cell<i32>` cannot be shared between threads safely in main()
25 …//~| NOTE if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock… in main()
28 //~^ ERROR `Cell<bool>` cannot be shared between threads safely in main()
[all …]
Dsuggest-cell.stderr1 error[E0277]: `Cell<()>` cannot be shared between threads safely
5 | ^^^^^^^^^^^^^^^^^^^ `Cell<()>` cannot be shared between threads safely
8 = note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock`
15 error[E0277]: `Cell<u8>` cannot be shared between threads safely
19 | ^^^^^^^^^^^^^^^^^^^ `Cell<u8>` cannot be shared between threads safely
22 …= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` …
29 error[E0277]: `Cell<i32>` cannot be shared between threads safely
33 | ^^^^^^^^^^^^^^^^^^^^ `Cell<i32>` cannot be shared between threads safely
36 …= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` …
43 error[E0277]: `Cell<bool>` cannot be shared between threads safely
[all …]
/third_party/openssl/
DNEWS.md4 This file gives a brief overview of the major changes between each OpenSSL
21 ### Major changes between OpenSSL 3.0.8 and OpenSSL 3.0.9 [30 May 2023]
32 ### Major changes between OpenSSL 3.0.7 and OpenSSL 3.0.8 [7 Feb 2023]
44 ### Major changes between OpenSSL 3.0.6 and OpenSSL 3.0.7 [1 Nov 2022]
51 ### Major changes between OpenSSL 3.0.5 and OpenSSL 3.0.6 [11 Oct 2022]
56 ### Major changes between OpenSSL 3.0.4 and OpenSSL 3.0.5 [5 Jul 2022]
63 ### Major changes between OpenSSL 3.0.3 and OpenSSL 3.0.4 [21 Jun 2022]
69 ### Major changes between OpenSSL 3.0.2 and OpenSSL 3.0.3 [3 May 2022]
80 ### Major changes between OpenSSL 3.0.1 and OpenSSL 3.0.2 [15 Mar 2022]
85 ### Major changes between OpenSSL 3.0.0 and OpenSSL 3.0.1 [14 Dec 2021]
[all …]
/third_party/openGLES/extensions/PGI/
DPGI_vertex_hints.txt24 OpenGL function calls will happen between Begin/End pairs.
81 This hint indicates which GL calls might occur between Begin/End pairs.
84 might occur between Begin/End pairs. Otherwise, <mode> must be a
110 might occur between Begin/End pairs. If <mode> does not contain a
112 between Begin/End pairs -- in this case, behavior of these functions
118 consistently between Begin/End pairs. If <mode> is either
120 the following assertion: Between Begin/End pairs, if any of
124 function will occur between the current Vertex function and the
127 functions might occur between Begin/End pairs.
134 be called before each Vertex function between Begin/End pairs.
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/PGI/
DPGI_vertex_hints.txt24 OpenGL function calls will happen between Begin/End pairs.
81 This hint indicates which GL calls might occur between Begin/End pairs.
84 might occur between Begin/End pairs. Otherwise, <mode> must be a
110 might occur between Begin/End pairs. If <mode> does not contain a
112 between Begin/End pairs -- in this case, behavior of these functions
118 consistently between Begin/End pairs. If <mode> is either
120 the following assertion: Between Begin/End pairs, if any of
124 function will occur between the current Vertex function and the
127 functions might occur between Begin/End pairs.
134 be called before each Vertex function between Begin/End pairs.
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dassociated_min_max.hpp27 /// Minimum comparison between 2 variables and returns 2 associated variable values
32 /// Minimum comparison between 2 variables and returns 2 associated variable values
39 /// Minimum comparison between 2 variables and returns 2 associated variable values
46 /// Minimum comparison between 2 variables and returns 2 associated variable values
53 /// Minimum comparison between 3 variables and returns 3 associated variable values
61 /// Minimum comparison between 3 variables and returns 3 associated variable values
69 /// Minimum comparison between 4 variables and returns 4 associated variable values
78 /// Minimum comparison between 4 variables and returns 4 associated variable values
87 /// Minimum comparison between 4 variables and returns 4 associated variable values
96 /// Minimum comparison between 4 variables and returns 4 associated variable values
[all …]
/third_party/rust/rust/tests/ui/stdlib-unit-tests/
Dnot-sync.stderr1 error[E0277]: `Cell<i32>` cannot be shared between threads safely
5 | ^^^^^^^^^ `Cell<i32>` cannot be shared between threads safely
8 …= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` …
15 error[E0277]: `RefCell<i32>` cannot be shared between threads safely
19 | ^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
22 …= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` …
29 error[E0277]: `Rc<i32>` cannot be shared between threads safely
33 | ^^^^^^^ `Rc<i32>` cannot be shared between threads safely
42 error[E0277]: `std::rc::Weak<i32>` cannot be shared between threads safely
46 | ^^^^^^^^^ `std::rc::Weak<i32>` cannot be shared between threads safely
[all …]
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/builtin/precision/square_matrix/
Ddeterminant_compute_fp16_mat_3x3.amber103 # Decimals between 64 and 128: 0.0625
106 # Decimals between 0.5 and 1: 0.00048828125
109 # Decimals between 0.0625 and 0.125: 0.0002441406
112 # Decimals between 8 and 16: 0.03125
115 # Integers between 4096 and 8192: 4
118 # Integers between 32768 and 65536: 128
121 # Decimals between 1024 and 2048: 4.0
124 # Decimals between 128 and 256: 2.0
127 # Decimals between 256 and 512: 0.25
130 # Decimals between 512 and 1024: 1.0
Ddeterminant_compute_fp64_mat_3x3.amber99 # Decimals between 64 and 128: 1.421085472e-14
102 # Decimals between 0.5 and 1: 2.220446049e-16
105 # Decimals between 0.0625 and 0.125: 2.775557562e-17
108 # Decimals between 8 and 16: 1.776356839e-15
111 # Decimals between 4096 and 8192: 9.094947018e-13
114 # Decimals between 32768 and 65536: 7.275957614e-12
117 # Decimals between 1.407374884e+14 and 2.814749767e+14: 0.03125
120 # Decimals between 1048576 and 2097152: 2.328306437e-10
123 # Decimals between 0.000244140625 and 0.00048828125: 0.00048828125
126 # Decimals between 131072 and 262144: 2.910383046e-11
Ddeterminant_highp_mat_3x3.amber98 # Decimals between 64 and 128: 7.629394531e-06
101 # Decimals between 0.5 and 1: 1.192092896e-07
104 # Decimals between 0.0625 and 0.125: 1.490116119e-08
107 # Decimals between 8 and 16: 0.00000190734864
110 # Decimals between 4096 and 8192: 0.00048828125
113 # Decimals between 32768 and 65536: 0.00390625
116 # Integers between 1.407374884e+14 and 2.814749767e+14: 16777216
119 # Decimals between 1048576 and 2097152: 0.250
122 # Integers between 2.199023256e+12 and 4.398046511e+12: 524288
125 # Decimals between 131072 and 262144: 0.015625
Ddeterminant_compute_fp64_mat_4x4.amber109 # Decimals between 16 and 32: 3.552713679e-15
112 # Decimals between 0.5 and 1: 2.220446049e-16
115 # Decimals between 0.25 and 0.5: 1.110223025e-16
118 # Decimals between 1024 and 2048: 2.273736754e-13
121 # Decimals between 1024 and 2048: 2.273736754e-13
124 # Decimals between 4096 and 8192: 9.094947018e-13
127 # Decimals between 8192 and 16384: 1.818989404e-12
130 # Decimals between 2.384185791e-07 and 4.768371582e-07: 1.058791184e-22
133 # Decimals between 0.0009765625 and 0.001953125: 4.33680869e-19
136 # Decimals between 4194304 and 8388608: 7.450580597e-09
Dinverse_compute_fp16_mat_3x3.amber103 # Decimals between 0.25 and 0.5: 0.000244140625
106 # Decimals between 0.5 and 1: 0.00048828125
109 # Decimals between 256 and 512: 0.25
112 # Decimals between 64 and 128: 0.25
115 # Decimals between 0.25 and 0.5: 0.000244140625
118 # Decimals between 0.5 and 1: 0.00048828125
121 # Decimals between 0.125 and 0.25: 0.000244140625
124 # Decimals between 4 and 8: 0.00390625
127 # Decimals between 0.125 and 0.25: 0.0001220703125
130 # Decimals between 0.125 and 0.25: 0.0001220703125
Ddeterminant_compute_fp16_mat_4x4.amber113 # Decimals between 16 and 32: 0.015625
116 # Decimals between 0.5 and 1: 0.00048828125
119 # Decimals between 0.25 and 0.5: 0.00146484375
122 # Decimals between 32 and 64: 0.25
125 # Decimals between 1024 and 2048: 12.0
128 # Integers between 4096 and 8192: 24
131 # Integers between 8192 and 16384: 64
134 # Integers between 32768 and 65536: 128
137 # Integers between 16384 and 32768: 96
140 # Integers between 2048 and 4096: 8
Dinverse_highp_mat_3x3.amber98 # Decimals between 0.25 and 0.5: 5.960464478e-08
101 # Decimals between 0.5 and 1: 1.192092896e-07
104 # Decimals between 256 and 512: 0.000030517578
107 # Decimals between 64 and 128: 0.0000152587890625
110 # Decimals between 2 and 4: 2.384185791e-07
113 # Decimals between 0.125 and 0.25: 2.980232239e-08
116 # Decimals between 6.103515625e-05 and 0.0001220703125: 0.000000000116415322
119 # Decimals between 0.015625 and 0.03125: 3.725290298e-09
122 # Decimals between 0.000244140625 and 0.00048828125: 5.820766091e-11
125 # Decimals between 0.03125 and 0.0625: 7.450580597e-09
Dinverse_compute_fp64_mat_3x3.amber99 # Decimals between 0.25 and 0.5: 1.110223025e-16
102 # Decimals between 0.5 and 1.0: 2.220446049e-16
105 # Decimals between 256 and 512: 5.684341886e-14
108 # Decimals between 64 and 128: 1.421085472e-14
111 # Decimals between 2 and 4: 4.440892099e-16
114 # Decimals between 0.125 and 0.25: 5.551115123e-17
117 # Decimals between 6.103515625e-05 and 0.0001220703125: 2.710505431e-20
120 # Decimals between 0.015625 and 0.03125: 2.328306437e-10
123 # Decimals between 0.000244140625 and 0.00048828125: 1.084202172e-19
126 # Decimals between 0.03125 and 0.0625: 1.387778781e-1
Dinverse_compute_fp16_mat_4x4.amber113 # Decimals between 2 and 4: 0.001953125
116 # Decimals between 0.5 and 1: 0.00048828125
119 # Decimals between 8 and 16: 0.015625
122 # Decimals between 1 and 2: 0.0009765625
125 # Decimals between 2 and 4: 0.03125
128 # Decimals between 0.5 and 1: 0.00048828125
131 # Decimals between 1 and 2: 0.00390625
134 # Decimals between 8 and 16: 0.0078125
137 # Decimals between 4 and 8: 0.00390625
140 # Decimals between 16 and 32: 0.250
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dsuspicious_unary_op_formatting.stderr1 error: by not having a space between `>` and `-` it looks like `>-` is a single operator
7 = help: put a space between `>` and `-` and remove the space after `-`
10 error: by not having a space between `>=` and `-` it looks like `>=-` is a single operator
16 = help: put a space between `>=` and `-` and remove the space after `-`
18 error: by not having a space between `&&` and `!` it looks like `&&!` is a single operator
24 = help: put a space between `&&` and `!` and remove the space after `!`
26 error: by not having a space between `>` and `-` it looks like `>-` is a single operator
32 = help: put a space between `>` and `-` and remove the space after `-`
/third_party/typescript/tests/baselines/reference/
DobjectTypeHidingMembersOfObjectAssignmentCompat2.errors.txt2 The types returned by 'toString()' are incompatible between these types.
5 The types returned by 'toString()' are incompatible between these types.
8 The types returned by 'toString()' are incompatible between these types.
11 The types returned by 'toString()' are incompatible between these types.
14 The types returned by 'toString()' are incompatible between these types.
28 !!! error TS2322: The types returned by 'toString()' are incompatible between these types.
33 !!! error TS2696: The types returned by 'toString()' are incompatible between these types.
43 !!! error TS2322: The types returned by 'toString()' are incompatible between these types.
48 !!! error TS2696: The types returned by 'toString()' are incompatible between these types.
57 !!! error TS2322: The types returned by 'toString()' are incompatible between these types.
/third_party/rust/rust/tests/ui/suggestions/
Drestrict-type-argument.stderr1 error[E0277]: `impl Sync` cannot be sent between threads safely
5 | ------- ^^^ `impl Sync` cannot be sent between threads safely
19 error[E0277]: `S` cannot be sent between threads safely
23 | ------- ^^^ `S` cannot be sent between threads safely
37 error[E0277]: `S` cannot be sent between threads safely
41 | ------- ^^^ `S` cannot be sent between threads safely
55 error[E0277]: `S` cannot be sent between threads safely
59 | ------- ^^^ `S` cannot be sent between threads safely
73 error[E0277]: `S` cannot be sent between threads safely
77 | ------- ^^^ `S` cannot be sent between threads safely
[all …]
/third_party/rust/rust/src/tools/clippy/tests/ui/manual_memcpy/
Dwithout_loop_counters.stderr1 error: it looks like you're manually copying between slices
11 error: it looks like you're manually copying between slices
19 error: it looks like you're manually copying between slices
27 error: it looks like you're manually copying between slices
35 error: it looks like you're manually copying between slices
43 error: it looks like you're manually copying between slices
58 error: it looks like you're manually copying between slices
66 error: it looks like you're manually copying between slices
74 error: it looks like you're manually copying between slices
82 error: it looks like you're manually copying between slices
[all …]
/third_party/rust/rust/tests/ui/traits/negative-impls/
Dnegated-auto-traits-error.stderr1 error[E0277]: `dummy::TestType` cannot be sent between threads safely
5 | ----- ^^^^^^^^ `dummy::TestType` cannot be sent between threads safely
16 error[E0277]: `dummy::TestType` cannot be sent between threads safely
20 | ^^^^^^^^^^^^^^^ `dummy::TestType` cannot be sent between threads safely
29 error[E0277]: `dummy1b::TestType` cannot be sent between threads safely
33 | ------- ^^^^^^^^ `dummy1b::TestType` cannot be sent between threads safely
44 error[E0277]: `dummy1c::TestType` cannot be sent between threads safely
48 | ------- ^^^^^^^^^^^^^ `dummy1c::TestType` cannot be sent between threads safely
60 error[E0277]: `dummy2::TestType` cannot be sent between threads safely
82 error[E0277]: `dummy3::TestType` cannot be sent between threads safely
[all …]
/third_party/rust/rust/tests/ui/iterators/
Dintegral.stderr8 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
18 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
28 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
38 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
48 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
58 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
68 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
78 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
88 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
98 …= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax…
[all …]
/third_party/python/Tools/c-analyzer/c_parser/parser/
D__init__.py27 + (stmt) for: between exprs in "header"
33 + (decl) struct/union: between member declators
34 + (decl) param-list: between params
35 + (decl) enum: between enumerators
36 + (decl) initializer (compound): between initializers
37 + (expr) postfix: between func call args
38 + (expr) expression: between "assignment" exprs
41 + (stmt) label: between label and stmt
42 + (stmt) case: between expression and stmt
43 + (stmt) default: between "default" and stmt
[all …]
/third_party/rust/rust/tests/ui/generator/
Dparent-expression.rs28 //~^ ERROR cannot be sent between threads
29 //~| ERROR cannot be sent between threads
30 //~| ERROR cannot be sent between threads
31 //[no_drop_tracking]~^^^^ ERROR cannot be sent between threads
41 //[no_drop_tracking]~^ ERROR cannot be sent between threads
42 //[no_drop_tracking]~| ERROR cannot be sent between threads
43 //[no_drop_tracking]~| ERROR cannot be sent between threads
44 //[no_drop_tracking]~| ERROR cannot be sent between threads

12345678910>>...321