Home
last modified time | relevance | path

Searched refs:cont (Results 1 – 25 of 206) sorted by relevance

123456789

/external/llvm/test/Transforms/InstCombine/
DLandingPadClauses.ll17 to label %cont.a unwind label %lpad.a
18 cont.a:
20 to label %cont.b unwind label %lpad.b
21 cont.b:
23 to label %cont.c unwind label %lpad.c
24 cont.c:
26 to label %cont.d unwind label %lpad.d
27 cont.d:
29 to label %cont.e unwind label %lpad.e
30 cont.e:
[all …]
/external/v8/src/compiler/
Dinstruction-selector.cc617 FlagsContinuation cont(kEqual, node); in VisitWord32Equal() local
620 return VisitWord32Test(m.left().node(), &cont); in VisitWord32Equal()
622 VisitWord32Compare(node, &cont); in VisitWord32Equal()
627 FlagsContinuation cont(kSignedLessThan, node); in VisitInt32LessThan() local
628 VisitWord32Compare(node, &cont); in VisitInt32LessThan()
633 FlagsContinuation cont(kSignedLessThanOrEqual, node); in VisitInt32LessThanOrEqual() local
634 VisitWord32Compare(node, &cont); in VisitInt32LessThanOrEqual()
639 FlagsContinuation cont(kUnsignedLessThan, node); in VisitUint32LessThan() local
640 VisitWord32Compare(node, &cont); in VisitUint32LessThan()
645 FlagsContinuation cont(kUnsignedLessThanOrEqual, node); in VisitUint32LessThanOrEqual() local
[all …]
/external/icu/icu4c/source/test/cintltst/
Duenumtst.c47 #define cont ((chArrayContext *)en->context) macro
51 if(cont->currUChar != NULL) { in chArrayClose()
52 free(cont->currUChar); in chArrayClose()
53 cont->currUChar = NULL; in chArrayClose()
60 return cont->maxIndex; in chArrayCount()
65 if(cont->currIndex >= cont->maxIndex) { in chArrayUNext()
69 if(cont->currUChar == NULL) { in chArrayUNext()
70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar)); in chArrayUNext()
73 cont->currChar = (cont->array)[cont->currIndex]; in chArrayUNext()
74 *resultLength = (int32_t)strlen(cont->currChar); in chArrayUNext()
[all …]
/external/boringssl/src/crypto/asn1/
Dx_long.c75 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_co…
108 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in long_i2c() argument
134 if(cont) { in long_i2c()
135 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0; in long_i2c()
137 cont[i] = (unsigned char)(utmp & 0xff); in long_i2c()
138 if(ltmp < 0) cont[i] ^= 0xff; in long_i2c()
145 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in long_c2i() argument
157 if(len && (cont[0] & 0x80)) neg = 1; in long_c2i()
162 if(neg) utmp |= cont[i] ^ 0xff; in long_c2i()
[all …]
Dx_bignum.c74 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
75 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont…
109 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in bn_i2c() argument
118 if(cont) { in bn_i2c()
119 if(pad) *cont++ = 0; in bn_i2c()
120 BN_bn2bin(bn, cont); in bn_i2c()
125 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in bn_c2i() argument
137 if(!BN_bin2bn(cont, len, bn)) { in bn_c2i()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc117 FlagsContinuation* cont) { in VisitBinop() argument
128 if (cont->IsBranch()) { in VisitBinop()
129 inputs[input_count++] = g.Label(cont->true_block()); in VisitBinop()
130 inputs[input_count++] = g.Label(cont->false_block()); in VisitBinop()
134 if (cont->IsSet()) { in VisitBinop()
135 outputs[output_count++] = g.DefineAsRegister(cont->result()); in VisitBinop()
143 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count, in VisitBinop()
145 if (cont->IsBranch()) instr->MarkAsControl(); in VisitBinop()
153 FlagsContinuation cont; in VisitBinop() local
154 VisitBinop<Matcher>(selector, node, opcode, operand_mode, &cont); in VisitBinop()
[all …]
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc166 InstructionCode opcode, FlagsContinuation* cont) { in VisitBinop() argument
185 if (cont->IsBranch()) { in VisitBinop()
186 inputs[input_count++] = g.Label(cont->true_block()); in VisitBinop()
187 inputs[input_count++] = g.Label(cont->false_block()); in VisitBinop()
191 if (cont->IsSet()) { in VisitBinop()
193 outputs[output_count++] = g.DefineAsRegister(cont->result()); in VisitBinop()
201 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count, in VisitBinop()
203 if (cont->IsBranch()) instr->MarkAsControl(); in VisitBinop()
210 FlagsContinuation cont; in VisitBinop() local
211 VisitBinop(selector, node, opcode, &cont); in VisitBinop()
[all …]
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc178 InstructionCode opcode, FlagsContinuation* cont) { in VisitBinop() argument
197 if (cont->IsBranch()) { in VisitBinop()
198 inputs[input_count++] = g.Label(cont->true_block()); in VisitBinop()
199 inputs[input_count++] = g.Label(cont->false_block()); in VisitBinop()
203 if (cont->IsSet()) { in VisitBinop()
204 outputs[output_count++] = g.DefineAsRegister(cont->result()); in VisitBinop()
212 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count, in VisitBinop()
214 if (cont->IsBranch()) instr->MarkAsControl(); in VisitBinop()
221 FlagsContinuation cont; in VisitBinop() local
222 VisitBinop(selector, node, opcode, &cont); in VisitBinop()
[all …]
/external/v8/test/mjsunit/
Dtry.js178 var cont = true;
179 while (cont) {
183 cont = false;
197 var cont = true;
198 while (cont) {
202 cont = false;
287 var cont = true;
288 while (cont) {
294 cont = false;
311 var cont = true;
[all …]
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc231 FlagsContinuation* cont) { in VisitBinop() argument
255 if (cont->IsBranch()) { in VisitBinop()
256 inputs[input_count++] = g.Label(cont->true_block()); in VisitBinop()
257 inputs[input_count++] = g.Label(cont->false_block()); in VisitBinop()
261 if (cont->IsSet()) { in VisitBinop()
262 outputs[output_count++] = g.DefineAsRegister(cont->result()); in VisitBinop()
271 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count, in VisitBinop()
273 if (cont->IsBranch()) instr->MarkAsControl(); in VisitBinop()
279 FlagsContinuation cont; in VisitBinop() local
280 VisitBinop(selector, node, opcode, reverse_opcode, &cont); in VisitBinop()
[all …]
/external/icu/icu4c/source/data/rbnf/
Dca.txt147 "%%spellout-ordinal-masculine-cont:",
194 "200: <%spellout-cardinal-masculine<-cent>%%spellout-ordinal-masculine-cont>;",
195 "1000: mil>%%spellout-ordinal-masculine-cont>;",
196 "2000: <%spellout-cardinal-masculine< mil>%%spellout-ordinal-masculine-cont>;",
197 "1000000: un milion>%%spellout-ordinal-masculine-cont>;",
199 "1000000000: un miliard>%%spellout-ordinal-masculine-cont>;",
201 "1000000000000: un bilion>%%spellout-ordinal-masculine-cont>;",
203 "1000000000000000: un biliard>%%spellout-ordinal-masculine-cont>;",
206 "%%spellout-ordinal-feminine-cont:",
253 "200: <%spellout-cardinal-masculine<-cent>%%spellout-ordinal-feminine-cont>;",
[all …]
/external/llvm/test/Transforms/Inline/
Dinvoke-combine-clauses.ll17 to label %cont unwind label %lpad
18 cont:
33 to label %cont unwind label %lpad
34 cont:
56 to label %cont unwind label %lpad
57 cont:
67 to label %cont unwind label %lpad
68 cont:
91 to label %cont unwind label %lpad
92 cont:
[all …]
/external/llvm/test/CodeGen/X86/
D2009-03-13-PHIElimBug.ll13 to label %cont unwind label %lpad ; <i32> [#uses=1]
15 cont: ; preds = %entry
21 cont2: ; preds = %cont
22 %xx = phi i32 [ %bb, %cont ] ; <i32> [#uses=1]
25 lpad: ; preds = %cont, %entry
26 %y = phi i32 [ %a, %entry ], [ %aa, %cont ] ; <i32> [#uses=1]
D2009-03-16-PHIElimInLPad.ll9 to label %cont unwind label %lpad ; <i32> [#uses=1]
11 cont: ; preds = %entry
15 cont2: ; preds = %cont
18 lpad: ; preds = %cont, %entry
19 %v = phi i32 [ %x, %entry ], [ %a, %cont ] ; <i32> [#uses=1]
/external/llvm/test/Transforms/SimplifyCFG/
Dduplicate-landingpad.ll18 ; CHECK: to label %invoke.cont unwind label %lpad2
20 to label %invoke.cont unwind label %lpad2
22 invoke.cont:
56 ; CHECK: to label %invoke.cont unwind label %lpad2
58 to label %invoke.cont unwind label %lpad2
60 invoke.cont:
90 ; CHECK: to label %invoke.cont unwind label %lpad2
92 to label %invoke.cont unwind label %lpad2
94 invoke.cont:
Dinvoke.ll18 to label %invoke.cont unwind label %lpad
20 invoke.cont:
37 to label %invoke.cont unwind label %lpad
39 invoke.cont:
56 to label %invoke.cont unwind label %lpad
58 invoke.cont:
75 to label %invoke.cont unwind label %lpad
77 invoke.cont:
97 to label %cont unwind label %lpad
102 to label %cont unwind label %lpad
[all …]
/external/llvm/test/Analysis/Lint/
Dcppeh-catch-intrinsics.ll21 to label %try.cont unwind label %lpad
38 br label %try.cont
40 try.cont: ; preds = %invoke.cont2, %entry
53 to label %try.cont unwind label %lpad
70 br label %try.cont
72 try.cont: ; preds = %invoke.cont2, %entry
86 to label %try.cont unwind label %lpad
105 br label %try.cont
107 try.cont: ; preds = %invoke.cont2, %entry
121 to label %try.cont unwind label %lpad
[all …]
Dcppeh-catch-intrinsics-clean.ll18 to label %try.cont unwind label %lpad
36 br label %try.cont
38 try.cont: ; preds = %invoke.cont2, %entry
49 to label %invoke.cont unwind label %lpad
51 invoke.cont:
53 to label %invoke.cont unwind label %lpad1
65 to label %try.cont unwind label %lpad
87 br label %try.cont
93 try.cont: ; preds = %invoke.cont2, %entry
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
Dgenlingware.pl499 my (@cont) = @_;
501 foreach my $cont (@cont) {
502 $size += length($cont);
503 print OUT $cont;
509 my (@cont) = @_;
511 foreach my $cont (@cont) {
512 $size += length($cont);
/external/openssh/
Droaming_dummy.c50 roaming_write(int fd, const void *buf, size_t count, int *cont) in roaming_write() argument
56 roaming_read(int fd, void *buf, size_t count, int *cont) in roaming_read() argument
58 if (cont) in roaming_read()
59 *cont = 0; in roaming_read()
/external/llvm/test/Transforms/ObjCARC/
Dpath-overflow.ll37 br label %msgSend.cont
40 br label %msgSend.cont
42 msgSend.cont: ; preds = %msgSend.nullinit, %msgSend.call
870 to label %invoke.cont unwind label %lpad
872 invoke.cont: ; preds = %entry
876 invoke.cont4: ; preds = %invoke.cont
885 to label %invoke.cont.i unwind label %lpad.i
887 invoke.cont.i: ; preds = %land.end
890 if.then.i: ; preds = %invoke.cont.i
898 invoke.cont8: ; preds = %if.then.i, %invoke.cont.i
[all …]
Dinvoke.ll14 ; CHECK: invoke.cont:
26 to label %invoke.cont unwind label %lpad
28 invoke.cont: ; preds = %entry
42 ; CHECK: invoke.cont:
58 to label %invoke.cont unwind label %lpad
60 invoke.cont: ; preds = %entry
79 ; CHECK: invoke.cont:
82 ; CHECK: finally.cont:
91 to label %invoke.cont unwind label %finally.rethrow, !clang.arc.no_objc_arc_exceptions !0
93 invoke.cont: ; preds = %entry
[all …]
/external/llvm/test/CodeGen/WinEH/
Dcppeh-catch-all.ll25 ; CHECK: to label %invoke.cont unwind label %[[LPAD_LABEL:lpad[0-9]+]]
33 to label %invoke.cont unwind label %lpad
35 invoke.cont: ; preds = %entry
36 br label %try.cont
42 ; CHECK-NEXT: indirectbr i8* [[RECOVER]], [label %try.cont]
65 br label %try.cont
67 try.cont: ; preds = %invoke.cont2, %invoke.cont
76 ; CHECK: ret i8* blockaddress(@_Z4testv, %try.cont)
Dseh-catch-all.ll29 to label %invoke.cont unwind label %lpad
31 invoke.cont: ; preds = %entry
32 br label %__try.cont
45 br label %__try.cont
47 __try.cont: ; preds = %__except, %invoke.cont
Dcppeh-nonalloca-frame-values.ll91 ; CHECK-NOT: phi i32 [ 0, %entry ], [ {{\%NumExceptions.*}}, %try.cont ]
92 ; CHECK-NOT: phi i32 [ 0, %entry ], [ {{\%inc.*}}, %try.cont ]
95 for.body: ; preds = %entry, %try.cont
96 %NumExceptions.020 = phi i32 [ 0, %entry ], [ %NumExceptions.1, %try.cont ]
97 %i.019 = phi i32 [ 0, %entry ], [ %inc5, %try.cont ]
99 to label %invoke.cont unwind label %lpad
101 ; CHECK: invoke.cont: ; preds = %for.body
107 ; CHECK: br label %try.cont
108 invoke.cont: ; preds = %for.body
112 br label %try.cont
[all …]

123456789