Home
last modified time | relevance | path

Searched full:lb (Results 1 – 25 of 4061) sorted by relevance

12345678910>>...163

/aosp_15_r20/prebuilts/go/linux-x86/test/ken/
Dslicearray.go15 var lb, hb int var
19 lb = 0
24 lb = 0
30 lb = 0
32 by = bx[lb:hb]
34 by = bx[lb:10]
36 by = bx[lb:]
51 lb = 2
53 by = bx[lb:hb]
55 by = bx[lb:10]
[all …]
Dsliceslice.go15 var lb, hb int var
21 lb = 0
23 by = bx[lb:hb]
25 by = bx[lb:10]
27 by = bx[lb:]
42 lb = 2
44 by = bx[lb:hb]
46 by = bx[lb:10]
48 by = bx[lb:]
57 lb = 0
[all …]
/aosp_15_r20/external/XNNPACK/src/math/
H A Dexpm1.sollya20 lb = round(-log(2)/2, single, RN);
22 P = fpminimax(expm1(x), [|1,2,3,4,5|], [|SG...|], [lb; ub], relative, 0);
24 print(" -log(2)/2 = ", lb);
26 print(" relative error =", round(dirtyinfnorm(P / expm1(x) - 1, [lb; ub]), single, RU));
28 lb = round(-log(2)/2, single, RN);
30 P = fpminimax(expm1(x), [|1,2,3,4,5,6|], [|SG...|], [lb; ub], relative, 0);
32 print(" -log(2)/2 = ", lb);
34 print(" relative error =", round(dirtyinfnorm(P / expm1(x) - 1, [lb; ub]), single, RU));
36 lb = round(-log(2)/2, single, RN);
38 P = fpminimax(expm1(x), [|2,3,4,5|], [|SG...|], [lb; ub], relative, 0+x);
[all …]
H A Dexp.sollya14 lb = round(-log(2)/2, single, RN);
16 print("-log(2)/2 = ", lb);
18 P = fpminimax(exp(x), [|1,2,3,4,5|], [|SG...|], [lb; ub], relative, 1);
20 print("relative error =", round(dirtyinfnorm(P / exp(x) - 1, [lb; ub]), single, RU));
22 lb = round(-log(2)/2, single, RN);
24 print("-log(2)/2 = ", lb);
26 P = fpminimax(exp(x), [|2,3,4,5|], [|SG...|], [lb; ub], relative, 1+x);
28 print("relative error =", round(dirtyinfnorm(P / exp(x) - 1, [lb; ub]), single, RU));
30 lb = round(-log(2)/8, single, RN);
32 print("-log(2)/8 =", lb);
[all …]
/aosp_15_r20/external/python/cpython2/Parser/
Dgrammar.c113 label *lb; in addlabel() local
124 lb = &ll->ll_label[ll->ll_nlabels++]; in addlabel()
125 lb->lb_type = type; in addlabel()
126 lb->lb_str = strdup(str); in addlabel()
129 PyGrammar_LabelRepr(lb)); in addlabel()
130 return lb - ll->ll_label; in addlabel()
167 translabel(grammar *g, label *lb) in translabel() argument
172 printf("Translating label %s ...\n", PyGrammar_LabelRepr(lb)); in translabel()
174 if (lb->lb_type == NAME) { in translabel()
176 if (strcmp(lb->lb_str, g->g_dfa[i].d_name) == 0) { in translabel()
[all …]
/aosp_15_r20/external/grpc-grpc/test/core/client_channel/lb_policy/
H A Dpick_first_test.cc148 // LB policy should have created a subchannel for both addresses. in TEST_F()
153 // When the LB policy receives the first subchannel's initial connectivity in TEST_F()
158 // LB policy should have reported CONNECTING state. in TEST_F()
164 // The LB policy will report CONNECTING some number of times (doesn't in TEST_F()
181 // LB policy should have created a subchannel for both addresses. in TEST_F()
186 // When the LB policy receives the first subchannel's initial connectivity in TEST_F()
192 // LB policy should have reported CONNECTING state. in TEST_F()
199 // The LB policy will start a connection attempt on the second subchannel. in TEST_F()
206 // The LB policy will report CONNECTING some number of times (doesn't in TEST_F()
228 // LB policy should have created a subchannel for all 3 addresses. in TEST_F()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/data/unidata/
H A Dppucd.txt73 property;Enumerated;lb;Line_Break
865 value;lb;AI;Ambiguous
866 value;lb;AK;Aksara
867 value;lb;AL;Alphabetic
868 value;lb;AP;Aksara_Prebase
869 value;lb;AS;Aksara_Start
870 value;lb;B2;Break_Both
871 value;lb;BA;Break_After
872 value;lb;BB;Break_Before
873 value;lb;BK;Mandatory_Break
[all …]
/aosp_15_r20/external/icu/icu4c/source/data/unidata/
H A Dppucd.txt75 property;Enumerated;lb;Line_Break
881 value;lb;AI;Ambiguous
882 value;lb;AK;Aksara
883 value;lb;AL;Alphabetic
884 value;lb;AP;Aksara_Prebase
885 value;lb;AS;Aksara_Start
886 value;lb;B2;Break_Both
887 value;lb;BA;Break_After
888 value;lb;BB;Break_Before
889 value;lb;BK;Mandatory_Break
[all …]
/aosp_15_r20/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
H A DAutoConfiguredLoadBalancerFactoryTest.java114 AutoConfiguredLoadBalancer lb = lbf.newLoadBalancer(new TestHelper()); in newLoadBalancer_isAuto() local
116 assertThat(lb).isInstanceOf(AutoConfiguredLoadBalancer.class); in newLoadBalancer_isAuto()
121 AutoConfiguredLoadBalancer lb = lbf.newLoadBalancer(new TestHelper()); in defaultIsPickFirst() local
123 assertThat(lb.getDelegateProvider()).isInstanceOf(PickFirstLoadBalancerProvider.class); in defaultIsPickFirst()
124 assertThat(lb.getDelegate().getClass().getName()).contains("PickFirst"); in defaultIsPickFirst()
129 AutoConfiguredLoadBalancer lb = new AutoConfiguredLoadBalancerFactory("test_lb") in defaultIsConfigurable() local
132 assertThat(lb.getDelegateProvider()).isSameInstanceAs(testLbBalancerProvider); in defaultIsConfigurable()
133 assertThat(lb.getDelegate()).isSameInstanceAs(testLbBalancer); in defaultIsConfigurable()
139 AutoConfiguredLoadBalancer lb = lbf.newLoadBalancer(new TestHelper()); in forwardsCalls() local
160 lb.setDelegate(testlb); in forwardsCalls()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/data/brkitr/rules/
H A Dline_normal.txt17 # line-break=normal (BCP47 -u-lb-normal) as defined for languages other than
131 # Rule LB 4, 5 Mandatory (Hard) breaks.
138 # LB 6 Do not break before hard line breaks.
140 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
144 # LB 7 x SP
151 # LB 8 Break after zero width space
158 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
162 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
170 # LB 11 Do not break before or after WORD JOINER & related characters.
179 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_cj.txt16 # This corresponds to CSS line-break=strict (BCP47 -u-lb-strict).
130 # Rule LB 4, 5 Mandatory (Hard) breaks.
137 # LB 6 Do not break before hard line breaks.
139 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
143 # LB 7 x SP
150 # LB 8 Break after zero width space
157 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
161 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
169 # LB 11 Do not break before or after WORD JOINER & related characters.
178 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline.txt16 # This corresponds to CSS line-break=strict (BCP47 -u-lb-strict).
129 # Rule LB 4, 5 Mandatory (Hard) breaks.
136 # LB 6 Do not break before hard line breaks.
138 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
142 # LB 7 x SP
149 # LB 8 Break after zero width space
156 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
160 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
168 # LB 11 Do not break before or after WORD JOINER & related characters.
177 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_loose_cj.txt17 # line-break=loose (BCP47 -u-lb-loose) as defined for Chinese & Japanese.
148 # Rule LB 4, 5 Mandatory (Hard) breaks.
155 # LB 6 Do not break before hard line breaks.
157 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
161 # LB 7 x SP
168 # LB 8 Break after zero width space
175 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
179 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
187 # LB 11 Do not break before or after WORD JOINER & related characters.
196 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_loose.txt18 # line-break=loose (BCP47 -u-lb-loose) as defined for languages other than
136 # Rule LB 4, 5 Mandatory (Hard) breaks.
143 # LB 6 Do not break before hard line breaks.
145 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
149 # LB 7 x SP
156 # LB 8 Break after zero width space
163 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
167 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
175 # LB 11 Do not break before or after WORD JOINER & related characters.
184 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_normal_phrase_cj.txt15 # line-break=normal (BCP47 -u-lb-normal) as defined for Chinese & Japanese.
147 # Rule LB 4, 5 Mandatory (Hard) breaks.
154 # LB 6 Do not break before hard line breaks.
156 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
160 # LB 7 x SP
167 # LB 8 Break after zero width space
174 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
178 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
186 # LB 11 Do not break before or after WORD JOINER & related characters.
195 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_normal_cj.txt17 # line-break=normal (BCP47 -u-lb-normal) as defined for Chinese & Japanese.
134 # Rule LB 4, 5 Mandatory (Hard) breaks.
141 # LB 6 Do not break before hard line breaks.
143 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
147 # LB 7 x SP
154 # LB 8 Break after zero width space
161 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
165 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
173 # LB 11 Do not break before or after WORD JOINER & related characters.
182 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_phrase_cj.txt142 # Rule LB 4, 5 Mandatory (Hard) breaks.
149 # LB 6 Do not break before hard line breaks.
151 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
155 # LB 7 x SP
162 # LB 8 Break after zero width space
169 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
173 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
181 # LB 11 Do not break before or after WORD JOINER & related characters.
190 # LB 12 Do not break after NBSP and related characters.
196 # LB 12a Do not break before NBSP and related characters ...
[all …]
/aosp_15_r20/external/icu/icu4c/source/data/brkitr/rules/
H A Dline_cj.txt16 # This corresponds to CSS line-break=strict (BCP47 -u-lb-strict).
130 # Rule LB 4, 5 Mandatory (Hard) breaks.
137 # LB 6 Do not break before hard line breaks.
139 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
143 # LB 7 x SP
150 # LB 8 Break after zero width space
157 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
161 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
169 # LB 11 Do not break before or after WORD JOINER & related characters.
178 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline.txt16 # This corresponds to CSS line-break=strict (BCP47 -u-lb-strict).
129 # Rule LB 4, 5 Mandatory (Hard) breaks.
136 # LB 6 Do not break before hard line breaks.
138 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
142 # LB 7 x SP
149 # LB 8 Break after zero width space
156 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
160 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
168 # LB 11 Do not break before or after WORD JOINER & related characters.
177 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_normal.txt17 # line-break=normal (BCP47 -u-lb-normal) as defined for languages other than
131 # Rule LB 4, 5 Mandatory (Hard) breaks.
138 # LB 6 Do not break before hard line breaks.
140 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
144 # LB 7 x SP
151 # LB 8 Break after zero width space
158 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
162 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
170 # LB 11 Do not break before or after WORD JOINER & related characters.
179 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_loose_cj.txt17 # line-break=loose (BCP47 -u-lb-loose) as defined for Chinese & Japanese.
148 # Rule LB 4, 5 Mandatory (Hard) breaks.
155 # LB 6 Do not break before hard line breaks.
157 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
161 # LB 7 x SP
168 # LB 8 Break after zero width space
175 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
179 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
187 # LB 11 Do not break before or after WORD JOINER & related characters.
196 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_normal_phrase_cj.txt15 # line-break=normal (BCP47 -u-lb-normal) as defined for Chinese & Japanese.
147 # Rule LB 4, 5 Mandatory (Hard) breaks.
154 # LB 6 Do not break before hard line breaks.
156 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
160 # LB 7 x SP
167 # LB 8 Break after zero width space
174 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
178 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
186 # LB 11 Do not break before or after WORD JOINER & related characters.
195 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_normal_cj.txt17 # line-break=normal (BCP47 -u-lb-normal) as defined for Chinese & Japanese.
134 # Rule LB 4, 5 Mandatory (Hard) breaks.
141 # LB 6 Do not break before hard line breaks.
143 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
147 # LB 7 x SP
154 # LB 8 Break after zero width space
161 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
165 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
173 # LB 11 Do not break before or after WORD JOINER & related characters.
182 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_loose.txt18 # line-break=loose (BCP47 -u-lb-loose) as defined for languages other than
136 # Rule LB 4, 5 Mandatory (Hard) breaks.
143 # LB 6 Do not break before hard line breaks.
145 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
149 # LB 7 x SP
156 # LB 8 Break after zero width space
163 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
167 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
175 # LB 11 Do not break before or after WORD JOINER & related characters.
184 # LB 12 Do not break after NBSP and related characters.
[all …]
H A Dline_phrase_cj.txt142 # Rule LB 4, 5 Mandatory (Hard) breaks.
149 # LB 6 Do not break before hard line breaks.
151 $LB4NonBreaks? $LB4Breaks {100}; # LB 5 do not break before hard breaks.
155 # LB 7 x SP
162 # LB 8 Break after zero width space
169 # LB 8a ZWJ x Do not break Emoji ZWJ sequences.
173 # LB 9 Combining marks. X $CM needs to behave like X, where X is not $SP, $BK $CR $LF $NL
181 # LB 11 Do not break before or after WORD JOINER & related characters.
190 # LB 12 Do not break after NBSP and related characters.
196 # LB 12a Do not break before NBSP and related characters ...
[all …]

12345678910>>...163