Searched refs:hint (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/external/mockito/src/main/java/org/mockito/internal/junit/
H A DStubbingHint.java8 * Stubbing hint emitted to the user
12 private final StringBuilder hint; field in class:StubbingHint
15 hint = new StringBuilder("[MockitoHint] ")
20 hint.append("\n[MockitoHint] ");
22 hint.append(e);
27 return hint.toString() + "\n";
H A DStubbingArgMismatches.java36 StubbingHint hint = new StubbingHint(testName);
39 hint.appendLine(x++, ". Unused... ", m.getKey().getLocation());
41 hint.appendLine(" ...args ok? ", invocation.getLocation());
45 logger.log(hint.toString());
/external/clang/lib/Headers/
H A Davx512pfintrin.h34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
37 (int)(hint)); })
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
42 (int)(hint)); })
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
57 (int)(hint)); })
[all...]
/external/tensorflow/tensorflow/core/platform/
H A Dprefetch.h39 template <PrefetchHint hint>
45 template <PrefetchHint hint>
50 __builtin_prefetch(x, 0, hint);
/external/compiler-rt/test/msan/
H A Dmmap_below_shadow.cc3 // Without MAP_FIXED, we ignore the address hint and map somewhere in
19 uintptr_t hint = 0x0f0000000000ULL; local
22 uintptr_t hint = 0x4f0000000000ULL;
25 uintptr_t hint = 0x4f00000000ULL;
28 uintptr_t hint = 0x2f0000000000ULL;
31 uintptr_t hint = 0x4f0000000ULL;
35 (void *)hint, 4096, PROT_WRITE,
H A Dallocator_mapping.cc21 void *const hint = reinterpret_cast<void *>(HEAP_ADDRESS); local
22 void *p = mmap(hint, 4096, PROT_READ | PROT_WRITE,
27 assert(p != hint);
H A Dgetaddrinfo-positive.cc15 struct addrinfo hint; local
18 res = getaddrinfo("localhost", NULL, &hint, &ai);
/external/valgrind/none/tests/ppc32/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/valgrind/none/tests/ppc64/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/mockito/src/main/java/org/mockito/internal/session/
H A DMockitoSessionLoggerAdapter.java19 public void log(String hint) { argument
20 logger.log(hint);
/external/v8/src/compiler/
H A Djs-type-hint-lowering.cc5 #include "src/compiler/js-type-hint-lowering.h"
36 bool GetBinaryNumberOperationHint(NumberOperationHint* hint) { argument
39 *hint = NumberOperationHint::kSignedSmall;
42 *hint = NumberOperationHint::kSigned32;
45 *hint = NumberOperationHint::kNumberOrOddball;
55 const Operator* SpeculativeNumberOp(NumberOperationHint hint) { argument
58 return simplified()->SpeculativeNumberAdd(hint);
60 return simplified()->SpeculativeNumberSubtract(hint);
62 return simplified()->SpeculativeNumberMultiply(hint);
64 return simplified()->SpeculativeNumberDivide(hint);
137 NumberOperationHint hint; local
[all...]
/external/mockito/src/main/java/org/mockito/session/
H A DMockitoSessionLogger.java23 * Logs the hint.
25 * @param hint to log; never {@code null}
28 void log(String hint); argument
/external/clang/test/CodeGen/
H A Davx512pf-builtins.c8 void test_mm512_mask_prefetch_i32gather_pd(__m256i index, __mmask8 mask, void const *addr, int hint) { argument
14 void test_mm512_prefetch_i32gather_pd(__m256i index, void const *addr, int hint) { argument
20 void test_mm512_mask_prefetch_i32gather_ps(__m512i index, __mmask16 mask, void const *addr, int hint) { argument
26 void test_mm512_prefetch_i32gather_ps(__m512i index, void const *addr, int hint) { argument
32 void test_mm512_mask_prefetch_i64gather_pd(__m512i index, __mmask8 mask, void const *addr, int hint) { argument
38 void test_mm512_prefetch_i64gather_pd(__m512i index, void const *addr, int hint) { argument
44 void test_mm512_mask_prefetch_i64gather_ps(__m512i index, __mmask8 mask, void const *addr, int hint) { argument
50 void test_mm512_prefetch_i64gather_ps(__m512i index, void const *addr, int hint) { argument
/external/llvm/test/MC/ARM/
H A Dinvalid-hint-arm.s3 hint #240 label
4 hint #1000 label
H A Dinvalid-hint-thumb.s3 hint #240 label
4 hint #1000 label
/external/v8/src/
H A Dtype-hints.cc10 std::ostream& operator<<(std::ostream& os, BinaryOperationHint hint) { argument
11 switch (hint) {
29 std::ostream& operator<<(std::ostream& os, CompareOperationHint hint) { argument
30 switch (hint) {
52 std::ostream& operator<<(std::ostream& os, ToBooleanHint hint) { argument
53 switch (hint) {
81 std::string ToString(ToBooleanHint hint) { argument
82 switch (hint) {
115 ToBooleanHint const hint = static_cast<ToBooleanHint>(1u << i); local
116 if (hints & hint) {
119 os << hint; local
131 ToBooleanHint const hint = static_cast<ToBooleanHint>(1u << i); local
[all...]
/external/clang/test/OpenMP/
H A Dcritical_messages.cpp54 #pragma omp critical (name2) hint // expected-error {{expected '(' after 'hint'}}
56 #pragma omp critical (name2) hint( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
58 #pragma omp critical (name2) hint(+ // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
60 #pragma omp critical (name2) hint(argc) // expected-error {{expression is not an integral constant expression}} expected-note {{read of non-const variable 'argc' is not allowed in a constant expression}}
62 #pragma omp critical (name) hint(N) // expected-error {{argument to 'hint' clause must be a strictly positive integer value}} expected-error {{constructs with the same name must have a 'hint' clause with the same value}} expected-note {{'hint' clause with value '4'}}
64 #pragma omp critical hint(
[all...]
H A Dcritical_ast_print.cpp23 #pragma omp critical (the_name) hint(N)
25 // CHECK-NEXT: #pragma omp critical (the_name) hint(N)
41 #pragma omp critical (the_name1) hint(23)
43 // CHECK-NEXT: #pragma omp critical (the_name1) hint(23)
/external/boringssl/src/crypto/bio/
H A Dsocket_helper.c44 struct addrinfo hint, *result, *cur; local
49 OPENSSL_memset(&hint, 0, sizeof(hint));
50 hint.ai_family = AF_UNSPEC;
51 hint.ai_socktype = SOCK_STREAM;
53 ret = getaddrinfo(hostname, port_str, &hint, &result);
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
H A DPromptHelper.java90 private Object requestPrompt(String instructions, String hint, Object type) throws InterruptedException { argument
97 promptHint = hint;
118 * @param hint prompt hint for user to answer
121 public String requestStringPrompt(String instructions, String hint) { argument
124 value = (String)this.requestPrompt(instructions, hint, String.class);
133 * @param hint prompt hint for user to answer
136 public Boolean requestBooleanPrompt(String instructions, String hint) { argument
139 value = (Boolean)this.requestPrompt(instructions, hint, Boolea
[all...]
/external/freetype/src/pshinter/
H A Dpshalgo.c83 PSH_Hint hint = table->hints; local
86 for ( ; count > 0; count--, hint++ )
88 psh_hint_deactivate( hint );
89 hint->order = -1;
94 /* internal function to record a new hint */
99 PSH_Hint hint = table->hints + idx; local
104 FT_TRACE0(( "psh_hint_table_record: invalid hint index %d\n", idx ));
109 if ( psh_hint_is_active( hint ) )
112 psh_hint_activate( hint );
114 /* now scan the current active hint se
267 PSH_Hint hint = &table->hints[idx]; local
407 PSH_Hint hint = table->hints + count; local
437 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
851 PSH_Hint hint; local
1446 PSH_Hint hint = sort[nn]; local
1466 PSH_Hint hint = sort[nn]; local
1503 PSH_Hint hint = sort[nn]; local
1520 PSH_Hint hint = sort[nn]; local
1538 PSH_Hint hint = sort[nn]; local
1731 PSH_Hint hint = point->hint; local
[all...]
/external/capstone/bindings/java/capstone/
H A DSparc.java56 public int hint; field in class:Sparc.UnionOpInfo
67 readField("hint");
76 return Arrays.asList("cc", "hint", "op_count", "op");
82 public int hint; field in class:Sparc.OpInfo
88 hint = op_info.hint;
/external/ipsec-tools/src/racoon/
H A Dkmpstat.c212 struct addrinfo hint, *ai; local
215 memset(&hint, 0, sizeof(hint));
216 hint.ai_family = PF_UNSPEC;
217 hint.ai_family = family;
218 hint.ai_socktype = SOCK_STREAM;
220 error = getaddrinfo(name, port, &hint, &ai);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DCalcSpillWeights.cpp99 // Find the best physreg hist and the best virtreg hint.
103 // Don't recompute a target specific hint.
141 unsigned hint = copyHint(mi, li.reg, tri, mri); local
142 if (!hint)
144 float hweight = Hint[hint] += weight;
145 if (TargetRegisterInfo::isPhysicalRegister(hint)) {
146 if (hweight > bestPhys && LIS.isAllocatable(hint))
147 bestPhys = hweight, hintPhys = hint;
150 bestVirt = hweight, hintVirt = hint;
156 // Always prefer the physreg hint
[all...]
/external/libdrm/amdgpu/
H A Dutil_hash.c57 primeForNumBits(n) >= hint.
59 static int countBits(int hint) argument
62 int bits = hint;
71 } else if (primeForNumBits(numBits) < hint) {
129 static void util_data_rehash(struct util_hash_data *hash, int hint) argument
131 if (hint < 0) {
132 hint = countBits(-hint);
133 if (hint < MinNumBits)
134 hint
[all...]

Completed in 1781 milliseconds

1234567891011>>