Home
last modified time | relevance | path

Searched refs:replaced (Results 1 – 25 of 1045) sorted by relevance

12345678910>>...42

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
DleaFixup64.mir8 ;testleaadd_64_32_1: 3 operands LEA64_32r cannot be replaced with 2 add instructions
9 ; but can be replaced with 1 lea + 1 add
14 ;testleaadd_rbp_64_32_1: 3 operands LEA64_32r cannot be replaced with 2 add instructions
15 ; where the base is rbp/r13/ebp register but it can be replaced with 1 lea + 1 add
21 ; be replaced with an add instruction but can be replaced with 1 lea instruction
26 ;test2add_64: 3 operands LEA64r that can be replaced with 2 add instructions
31 ;test2add_rbp_64: 3 operands LEA64r that can be replaced with 2 add instructions
37 ;test1add_rbp_64: 2 operands LEA64r where base register is rbp/r13/ebp and can be replaced
43 ;testleaadd_64_32: 3 operands LEA64_32r that can be replaced with 1 lea 1 add instructions
48 ;testleaadd_rbp_64_32: 3 operands LEA64_32r that can be replaced with 1 lea 1 add instructions
[all …]
DleaFixup32.mir9 ;test2add_32: 3 operands LEA32r that can be replaced with 2 add instructions
15 ;test2add_ebp_32: 3 operands LEA32r that can be replaced with 2 add instructions
21 ;test1add_ebp_32: 2 operands LEA32r where base register is ebp and can be replaced
27 ;testleaadd_32: 3 operands LEA32r that can be replaced with 1 lea 1 add instructions
32 ;testleaadd_ebp_32: 3 operands LEA32r that can be replaced with 1 lea 1 add instructions
38 ;test1lea_ebp_32: 2 operands LEA32r wher base register is rbp/r13/ebp and can be replaced
44 ;test2addi32_32: 3 operands LEA32r that can be replaced with 2 add instructions where ADD32ri32
50 ;test1mov1add_ebp_32: 2 operands LEA32r that can be replaced with 1 add 1 mov instructions
56 ;testleaadd_ebp_index_32: 3 operands LEA32r that can be replaced with 1 lea 1 add instructions
62 ;testleaadd_ebp_index2_32: 3 operands LEA32r that can be replaced with 1 lea 1 add instructions
[all …]
/external/grpc-grpc/src/cpp/common/
Dchannel_arguments.cc96 bool replaced = false; in SetSocketMutator() local
101 GPR_ASSERT(!replaced); in SetSocketMutator()
104 replaced = true; in SetSocketMutator()
108 if (!replaced) { in SetSocketMutator()
122 bool replaced = false; in SetUserAgentPrefix() local
132 replaced = true; in SetUserAgentPrefix()
138 if (!replaced) { in SetUserAgentPrefix()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
DMethodUsage.java107 public MethodUsage replaceParamType(int i, ResolvedType replaced) { in replaceParamType() argument
111 if (paramTypes.get(i) == replaced) { in replaceParamType()
115 newParams.set(i, replaced); in replaceParamType()
119 public MethodUsage replaceExceptionType(int i, ResolvedType replaced) { in replaceExceptionType() argument
123 if (exceptionTypes.get(i) == replaced) { in replaceExceptionType()
127 newTypes.set(i, replaced); in replaceExceptionType()
/external/curl/tests/data/
Dtest47 HTTP replaced headers
33 …-H "extra-header: here" -H "Accept: replaced" -H "X-Custom-Header;" -H "X-Test: foo; " -H "X-Test:…
47 Accept: replaced
55 Accept: replaced
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
DLazyType.java106 …ublic ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, in replaceTypeVariables() argument
108 return getType().replaceTypeVariables(tp, replaced, inferredTypes); in replaceTypeVariables()
112 …lic ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced) { in replaceTypeVariables() argument
113 return getType().replaceTypeVariables(tp, replaced); in replaceTypeVariables()
/external/javapoet/src/main/java/com/squareup/javapoet/
DNameAllocator.java118 String replaced = tagToName.put(tag, suggestion); in newName() local
119 if (replaced != null) { in newName()
120 tagToName.put(tag, replaced); // Put things back as they were! in newName()
121 throw new IllegalArgumentException("tag " + tag + " cannot be used for both '" + replaced in newName()
/external/freetype/src/tools/
Dupdate-copyright-year56 my $replaced = 0;
64 if (!$replaced)
91 $replaced = 1;
118 $replaced = 1;
131 # Reset $replaced before processing the next file.
132 $replaced = 0 if eof;
/external/libdrm/intel/
Duthash.h191 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
193 (replaced) = NULL; \
194 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
195 if (replaced) { \
196 HASH_DELETE(hh, head, replaced); \
201 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
203 (replaced) = NULL; \
204 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
205 if (replaced) { \
206 HASH_DELETE(hh, head, replaced); \
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
DResolvedType.java165 … replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, Map<ResolvedType… in replaceTypeVariables() argument
172 …ult ResolvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced) { in replaceTypeVariables() argument
173 return replaceTypeVariables(tp, replaced, new HashMap<>()); in replaceTypeVariables()
DResolvedTypeVariable.java82 …Variables(ResolvedTypeParameterDeclaration tpToBeReplaced, ResolvedType replaced, Map<ResolvedType… in replaceTypeVariables() argument
84 inferredTypes.put(this.asTypeParameter(), replaced); in replaceTypeVariables() local
85 return replaced; in replaceTypeVariables()
DResolvedWildcard.java147 …ypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, Map<ResolvedType… in replaceTypeVariables() argument
148 if (replaced == null) { in replaceTypeVariables()
154 …ResolvedType boundedTypeReplaced = boundedType.replaceTypeVariables(tpToReplace, replaced, inferre… in replaceTypeVariables()
DResolvedReferenceType.java157 …olvedType replaceTypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, in replaceTypeVariables() argument
159 if (replaced == null) { in replaceTypeVariables()
166 … ResolvedType transformedTp = tp.replaceTypeVariables(tpToReplace, replaced, inferredTypes); in replaceTypeVariables()
169 inferredTypes.put(tp.asTypeParameter(), replaced); in replaceTypeVariables() local
184 values.set(index, replaced); in replaceTypeVariables()
DResolvedArrayType.java104 …ypeVariables(ResolvedTypeParameterDeclaration tpToReplace, ResolvedType replaced, Map<ResolvedType… in replaceTypeVariables() argument
105 …ResolvedType baseTypeReplaced = baseType.replaceTypeVariables(tpToReplace, replaced, inferredTypes… in replaceTypeVariables()
DResolvedIntersectionType.java70 … replaceTypeVariables(ResolvedTypeParameterDeclaration tp, ResolvedType replaced, Map<ResolvedType… in replaceTypeVariables() argument
72 .map(e -> e.replaceTypeVariables(tp, replaced, inferredTypes)) in replaceTypeVariables()
/external/deqp-deps/SPIRV-Tools/test/opt/
Dpass_utils.cpp63 bool replaced = false; in FindAndReplace() local
70 replaced = true; in FindAndReplace()
72 return replaced; in FindAndReplace()
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dpass_utils.cpp63 bool replaced = false; in FindAndReplace() local
70 replaced = true; in FindAndReplace()
72 return replaced; in FindAndReplace()
/external/python/cpython3/Mac/Tools/
Dpythonw.c173 char replaced; in main() local
174 replaced = slash[1]; in main()
179 slash[1] = replaced; in main()
/external/catch2/include/internal/
Dcatch_string_manip.cpp55 bool replaced = false; in replaceInPlace() local
58 replaced = true; in replaceInPlace()
65 return replaced; in replaceInPlace()
/external/opencensus-java/api/src/main/java/io/opencensus/trace/
DStatus.java241 Status replaced = canonicalizer.put(code.value(), new Status(code, null)); in buildStatusList() local
242 if (replaced != null) { in buildStatusList()
245 + replaced.getCanonicalCode().name() in buildStatusList()
/external/smali/baksmali/src/test/smali/deodex_test1/
Dmain.smali21 #replaced with throw v0.
31 #reached, and should be replaced with throw v2
36 #be replaced with throw v1
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_get_dimension_size_rewriter.cc67 TF_ASSIGN_OR_RETURN(bool replaced, in Run()
69 changed = changed || replaced; in Run()
/external/mesa3d/src/compiler/nir/
Dnir_lower_atomics_to_ssbo.c199 unsigned replaced = 0; in nir_lower_atomics_to_ssbo() local
204 if (replaced & (1 << var->data.binding)) in nir_lower_atomics_to_ssbo()
229 replaced |= (1 << var->data.binding); in nir_lower_atomics_to_ssbo()
/external/llvm/test/Object/
Darchive-update.test24 Check that without the 'u' option the member is replaced with an older file.
28 Check that with the 'u' option the member is replaced with a newer file.
32 Check that with the 'u' option the member is not replaced with an older file.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Darchive-update.test24 Check that without the 'u' option the member is replaced with an older file.
28 Check that with the 'u' option the member is replaced with a newer file.
32 Check that with the 'u' option the member is not replaced with an older file.

12345678910>>...42