Searched defs:hint (Results 1 - 25 of 122) sorted by relevance

12345

/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/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/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) {
46 std::ostream& operator<<(std::ostream& os, ToBooleanHint hint) { argument
47 switch (hint) {
82 ToBooleanHint const hint = static_cast<ToBooleanHint>(1u << i); local
83 if (hints & hint) {
86 os << hint; local
H A Dtype-hints.h24 inline size_t hash_value(BinaryOperationHint hint) { argument
25 return static_cast<unsigned>(hint);
39 inline size_t hash_value(CompareOperationHint hint) { argument
40 return static_cast<unsigned>(hint);
/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";
/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/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/elfutils/libdwfl/
H A Dsegment.c127 lookup (Dwfl *dwfl, GElf_Addr address, int hint) argument
129 if (hint >= 0
130 && address >= dwfl->lookup_addr[hint]
131 && ((size_t) hint + 1 == dwfl->lookup_elts
132 || address < dwfl->lookup_addr[hint + 1]))
133 return hint;
156 int hint = -1; local
166 int idx = lookup (dwfl, start, hint);
228 hint = (size_t) idx < dwfl->lookup_elts ? idx : -1;
/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/pdfium/third_party/freetype/src/cid/
H A Dcidobjs.h105 FT_Bool hint; member in struct:CID_GlyphSlotRec_
/external/pdfium/third_party/freetype/src/type1/
H A Dt1objs.h120 FT_Bool hint; member in struct:T1_GlyphSlotRec_
/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/cff/
H A Dcffobjs.h75 FT_Bool hint; member in struct:CFF_GlyphSlotRec_
/external/libcxx/test/support/
H A Dallocators.h104 T* allocate(std::size_t, const void* hint) argument
107 return (T*)hint;
/external/libunwind/include/tdep-ia64/
H A Dscript.h54 unsigned short hint; /* hint for next script to try (or -1) */ member in struct:ia64_script
/external/pdfium/third_party/freetype/src/cff/
H A Dcffobjs.h75 FT_Bool hint; member in struct:CFF_GlyphSlotRec_
/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/v8/src/compiler/
H A Dcontrol-builders.cc12 void IfBuilder::If(Node* condition, BranchHint hint) { argument
13 builder_->NewBranch(condition, hint);
158 void BlockBuilder::BreakWhen(Node* condition, BranchHint hint) { argument
160 control_if.If(condition, hint);
168 void BlockBuilder::BreakUnless(Node* condition, BranchHint hint) { argument
170 control_if.If(condition, hint);
/external/deqp/modules/gles3/functional/
H A Des3fBufferCopyTests.cpp155 deUint32 hint,
160 , m_hint (hint)
268 const deUint32 hint = GL_STATIC_DRAW; local
272 basicGroup->addChild(new BasicBufferCopyCase(m_context, name.c_str(), "", srcTarget, size, hint, dstTarget, size, hint, 0, 0, size, verify));
306 deUint32 hint = GL_STATIC_DRAW; local
310 srcTarget, cases[ndx].srcSize, hint,
311 dstTarget, cases[ndx].dstSize, hint,
331 const deUint32 hint = GL_STATIC_DRAW; local
335 singleBufGroup->addChild(new SingleBufferCopyCase(m_context, name.c_str(), "", srcTarget, dstTarget, hint, verif
150 SingleBufferCopyCase(Context& context, const char* name, const char* desc, deUint32 srcTarget, deUint32 dstTarget, deUint32 hint, VerifyType verifyType) argument
[all...]
/external/dng_sdk/source/
H A Ddng_matrix.cpp1057 const dng_matrix &hint)
1061 A.Rows () != hint.Cols () ||
1062 A.Cols () != hint.Rows ())
1072 // Use the specified hint matrix.
1074 return Invert (hint * A) * hint;
1056 Invert(const dng_matrix &A, const dng_matrix &hint) argument
/external/libevent/
H A Dbufferevent_sock.c472 struct evutil_addrinfo hint; local
488 memset(&hint, 0, sizeof(hint));
489 hint.ai_family = family;
490 hint.ai_protocol = IPPROTO_TCP;
491 hint.ai_socktype = SOCK_STREAM;
498 &hint, bufferevent_connect_getaddrinfo_cb, bev);
/external/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp141 // Find the best physreg hint and the best virtreg hint.
145 // Don't recompute a target specific hint.
185 unsigned hint = copyHint(mi, li.reg, tri, mri); local
186 if (!hint)
192 volatile float hweight = Hint[hint] += weight;
193 if (TargetRegisterInfo::isPhysicalRegister(hint)) {
194 if (hweight > bestPhys && mri.isAllocatable(hint)) {
196 hintPhys = hint;
201 hintVirt = hint;
[all...]

Completed in 653 milliseconds

12345