/external/clang/test/OpenMP/ |
D | task_final_messages.cpp | 14 #pragma omp task final // expected-error {{expected '(' after 'final'}} in tmain() 15 …#pragma omp task final ( // expected-error {{expected expression}} expected-error {{expected ')'}}… in tmain() 16 #pragma omp task final () // expected-error {{expected expression}} in tmain() 17 …#pragma omp task final (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in tmain() 18 …#pragma omp task final (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task'… in tmain() 19 #pragma omp task final (argc > 0 ? argv[1] : argv[2]) in tmain() 20 …#pragma omp task final (foobool(argc)), final (true) // expected-error {{directive '#pragma omp ta… in tmain() 21 #pragma omp task final (S) // expected-error {{'S' does not refer to a value}} in tmain() 22 …#pragma omp task final (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match thi… in tmain() 23 …#pragma omp task final (argc argc) // expected-error {{expected ')'}} expected-note {{to match thi… in tmain() [all …]
|
D | taskloop_final_messages.cpp | 14 #pragma omp taskloop final // expected-error {{expected '(' after 'final'}} in tmain() 17 #pragma omp taskloop final( // expected-error {{expected expression}} expected-error {{expected ')'… in tmain() 20 #pragma omp taskloop final() // expected-error {{expected expression}} in tmain() 23 #pragma omp taskloop final(argc // expected-error {{expected ')'}} expected-note {{to match this '(… in tmain() 26 #pragma omp taskloop final(argc)) // expected-warning {{extra tokens at the end of '#pragma omp tas… in tmain() 29 #pragma omp taskloop final(argc > 0 ? argv[1] : argv[2]) in tmain() 32 #pragma omp taskloop final(foobool(argc)), final(true) // expected-error {{directive '#pragma omp t… in tmain() 35 #pragma omp taskloop final(S) // expected-error {{'S' does not refer to a value}} in tmain() 38 #pragma omp taskloop final(argv[1] = 2) // expected-error {{expected ')'}} expected-note {{to match… in tmain() 41 #pragma omp taskloop final(argc argc) // expected-error {{expected ')'}} expected-note {{to match t… in tmain() [all …]
|
D | taskloop_simd_final_messages.cpp | 14 #pragma omp taskloop simd final // expected-error {{expected '(' after 'final'}} in tmain() 17 #pragma omp taskloop simd final( // expected-error {{expected expression}} expected-error {{expecte… in tmain() 20 #pragma omp taskloop simd final() // expected-error {{expected expression}} in tmain() 23 #pragma omp taskloop simd final(argc // expected-error {{expected ')'}} expected-note {{to match th… in tmain() 26 #pragma omp taskloop simd final(argc)) // expected-warning {{extra tokens at the end of '#pragma om… in tmain() 29 #pragma omp taskloop simd final(argc > 0 ? argv[1] : argv[2]) in tmain() 32 #pragma omp taskloop simd final(foobool(argc)), final(true) // expected-error {{directive '#pragma … in tmain() 35 #pragma omp taskloop simd final(S) // expected-error {{'S' does not refer to a value}} in tmain() 38 #pragma omp taskloop simd final(argv[1] = 2) // expected-error {{expected ')'}} expected-note {{to … in tmain() 41 #pragma omp taskloop simd final(argc argc) // expected-error {{expected ')'}} expected-note {{to ma… in tmain() [all …]
|
/external/openssh/ |
D | md5crypt.c | 55 unsigned char final[16]; in md5_crypt() local 96 MD5_Final(final, &ctx1); in md5_crypt() 99 MD5_Update(&ctx, final, pl > 16 ? 16 : pl); in md5_crypt() 102 memset(final, '\0', sizeof final); in md5_crypt() 107 MD5_Update(&ctx, final + j, 1); in md5_crypt() 114 MD5_Final(final, &ctx); in md5_crypt() 126 MD5_Update(&ctx1, final, 16); in md5_crypt() 135 MD5_Update(&ctx1, final, 16); in md5_crypt() 139 MD5_Final(final, &ctx1); in md5_crypt() 144 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; in md5_crypt() [all …]
|
/external/valgrind/nightly/bin/ |
D | nightly | 104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 246 echo "valgrind revision: $valgrind_revision" > final 247 echo "VEX revision: $vex_revision" >> final 248 echo "C compiler: $gcc_version" >> final 249 echo "GDB: $gdb_version" >> final 250 echo "Assembler: $as_version" >> final 251 echo "C library: $libc" >> final 252 echo "uname -mrs: $uname_stuff" >> final 253 echo "Vendor version: $vendor_stuff" >> final 256 echo >> final [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
D | btTriangleIndexVertexArray.i | 43 protected final static Array<btIndexedMesh> instances = new Array<btIndexedMesh>(); 44 protected static btIndexedMesh getInstance(final Object tag) { in getInstance() 45 final int n = instances.size; in getInstance() 47 final btIndexedMesh mesh = instances.get(i); in getInstance() 56 public static btIndexedMesh obtain(final MeshPart meshPart) { in obtain() 71 public static btIndexedMesh obtain(final Object tag, in obtain() 72 …final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInByte… in obtain() 73 final ShortBuffer indices, int indexOffset, int indexCount) { in obtain() 94 public btIndexedMesh(final Mesh mesh) { in btIndexedMesh() 102 public btIndexedMesh(final MeshPart meshPart) { in btIndexedMesh() [all …]
|
/external/v8/src/crankshaft/mips64/ |
D | lithium-mips64.h | 157 Opcode opcode() const final { return LInstruction::k##type; } \ 158 void CompileToNative(LCodeGen* generator) final; \ 159 const char* Mnemonic() const final { return mnemonic; } \ 284 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 304 int InputCount() final { return I; } in InputCount() 305 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 307 int TempCount() final { return T; } in TempCount() 308 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 323 bool IsGap() const final { return true; } in IsGap() 360 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/x64/ |
D | lithium-x64.h | 155 Opcode opcode() const final { return LInstruction::k##type; } \ 156 void CompileToNative(LCodeGen* generator) final; \ 157 const char* Mnemonic() const final { return mnemonic; } \ 286 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 290 bool MustSignExtendResult(LPlatformChunk* chunk) const final; 308 int InputCount() final { return I; } in InputCount() 309 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 311 int TempCount() final { return T; } in TempCount() 312 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 327 bool IsGap() const final { return true; } in IsGap() [all …]
|
/external/v8/src/crankshaft/arm/ |
D | lithium-arm.h | 156 Opcode opcode() const final { return LInstruction::k##type; } \ 157 void CompileToNative(LCodeGen* generator) final; \ 158 const char* Mnemonic() const final { return mnemonic; } \ 283 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 303 int InputCount() final { return I; } in InputCount() 304 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 306 int TempCount() final { return T; } in TempCount() 307 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 359 class LInstructionGap final : public LGap { 371 class LGoto final : public LTemplateInstruction<0, 0, 0> { [all …]
|
/external/v8/src/crankshaft/s390/ |
D | lithium-s390.h | 156 Opcode opcode() const final { return LInstruction::k##type; } \ 157 void CompileToNative(LCodeGen* generator) final; \ 158 const char* Mnemonic() const final { return mnemonic; } \ 276 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 295 int InputCount() final { return I; } in InputCount() 296 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 298 int TempCount() final { return T; } in TempCount() 299 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 348 class LInstructionGap final : public LGap { 359 class LGoto final : public LTemplateInstruction<0, 0, 0> { [all …]
|
/external/v8/src/crankshaft/mips/ |
D | lithium-mips.h | 154 Opcode opcode() const final { return LInstruction::k##type; } \ 155 void CompileToNative(LCodeGen* generator) final; \ 156 const char* Mnemonic() const final { return mnemonic; } \ 281 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 301 int InputCount() final { return I; } in InputCount() 302 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 304 int TempCount() final { return T; } in TempCount() 305 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 320 bool IsGap() const final { return true; } in IsGap() 357 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/x87/ |
D | lithium-x87.h | 158 Opcode opcode() const final { return LInstruction::k##type; } \ 159 void CompileToNative(LCodeGen* generator) final; \ 160 const char* Mnemonic() const final { return mnemonic; } \ 289 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 309 int InputCount() final { return I; } in InputCount() 310 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 312 int TempCount() final { return T; } in TempCount() 313 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 327 bool IsGap() const final { return true; } in IsGap() 364 class LInstructionGap final : public LGap { [all …]
|
/external/clang/test/CXX/class/class.mem/ |
D | p8-0x.cpp | 9 virtual void h() final final; // expected-error {{class member already marked 'final'}} 25 virtual void f() final; 26 void g() final; // expected-error {{only virtual member functions can be marked 'final'}} 27 int h final; // expected-error {{only virtual member functions can be marked 'final'}} member 37 virtual void h() final final {} // expected-error {{class member already marked 'final'}} in h() 50 virtual void f() final {} in f() 51 void g() final {} // expected-error {{only virtual member functions can be marked 'final'}} in g()
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-ppc.h | 158 Opcode opcode() const final { return LInstruction::k##type; } \ 159 void CompileToNative(LCodeGen* generator) final; \ 160 const char* Mnemonic() const final { return mnemonic; } \ 281 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 301 int InputCount() final { return I; } in InputCount() 302 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 304 int TempCount() final { return T; } in TempCount() 305 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 356 class LInstructionGap final : public LGap { 368 class LGoto final : public LTemplateInstruction<0, 0, 0> { [all …]
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-ia32.h | 159 Opcode opcode() const final { return LInstruction::k##type; } \ 160 void CompileToNative(LCodeGen* generator) final; \ 161 const char* Mnemonic() const final { return mnemonic; } \ 286 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 306 int InputCount() final { return I; } in InputCount() 307 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 309 int TempCount() final { return T; } in TempCount() 310 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 324 bool IsGap() const final { return true; } in IsGap() 361 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-arm64.h | 168 Opcode opcode() const final { return LInstruction::k##type; } \ 169 void CompileToNative(LCodeGen* generator) final; \ 170 const char* Mnemonic() const final { return mnemonic; } \ 287 bool HasResult() const final { return (R != 0) && (result() != NULL); } in HasResult() 307 int InputCount() final { return I; } in InputCount() 308 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 310 int TempCount() final { return T; } in TempCount() 311 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 315 class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> { 327 bool IsControl() const final { return true; } in IsControl() [all …]
|
/external/clang/test/CXX/class.derived/class.virtual/ |
D | p3-0x.cpp | 52 virtual void f() const final; // expected-note {{overridden virtual function is here}} 68 void h() final; 72 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 77 void i() final; 81 virtual void i() final; 86 void h(T...) final; 87 void i(T...) final; // expected-error {{only virtual member functions can be marked 'final'}} 94 void h() final; 98 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 126 virtual void f() final; [all …]
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/clang/test/CodeGenCXX/ |
D | devirtualize-virtual-function-calls-final.cpp | 5 virtual int f() final; 16 struct A final { 32 struct B final : A { }; 59 struct B final : A { 84 struct C final : B { 120 struct D final : public C, public B { 139 struct zed final : public foo, public bar { 161 struct C final : A, B { }; 187 struct RC final : public RA {
|
/external/jemalloc/test/unit/ |
D | hash.c | 69 VARIABLE_ARRAY(uint8_t, final, hashbytes); in hash_variant_verify_key() 75 memset(final, 0, hashbytes); in hash_variant_verify_key() 107 memcpy(final, &out, sizeof(out)); in hash_variant_verify_key() 112 memcpy(final, out, sizeof(out)); in hash_variant_verify_key() 117 memcpy(final, out, sizeof(out)); in hash_variant_verify_key() 122 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | in hash_variant_verify_key() 123 (final[3] << 24); in hash_variant_verify_key()
|