HomeSort by relevance Sort by last modified time
    Searched defs:hint (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
iobase.c 568 "hint can be specified to control the number of lines read: no more\n"
570 "lines so far exceeds hint.");
575 Py_ssize_t hint = -1, length = 0; local
578 if (!PyArg_ParseTuple(args, "|O&:readlines", &_PyIO_ConvertSsize_t, &hint)) {
586 if (hint <= 0) {
618 if (length > hint)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 238 int hint = 0, length = 0; local
240 if (!PyArg_ParseTuple(args, "|i:readlines", &hint)) return NULL;
260 if (hint > 0 && length >= hint)
  /external/ImageMagick/MagickCore/
distribute-cache.c 198 hint,
220 (void) memset(&hint,0,sizeof(hint));
221 hint.ai_family=AF_INET;
222 hint.ai_socktype=SOCK_STREAM;
223 hint.ai_flags=AI_PASSIVE;
225 status=getaddrinfo(hostname,service,&hint,&result);
922 hint,
937 (void) memset(&hint,0,sizeof(hint));
195 hint, local
917 hint, local
    [all...]
  /external/freetype/src/psaux/
pshints.h 64 * rebuilt each time there is a hint substitution (HintMask operator) in
111 * operation (beginning with a Move operator) and at each hint
151 cf2_hint_isValid( const CF2_Hint hint ); variable
153 cf2_hint_isTop( const CF2_Hint hint ); variable
155 cf2_hint_isBottom( const CF2_Hint hint ); variable
157 cf2_hint_lock( CF2_Hint hint ); variable
189 CF2_HintMapRec hintMap; /* current hint map */
193 CF2_ArrStackRec hintMoves; /* list of hint moves for 2nd pass */
pshints.c 60 size_t j; /* index of upper hint map edge */
86 * Adjust stem hint for darkening here.
90 cf2_hint_init( CF2_Hint hint,
102 FT_ZERO( hint );
116 hint->csCoord = stemHint->max;
117 hint->flags = CF2_GhostBottom;
120 hint->flags = 0;
128 hint->flags = 0;
131 hint->csCoord = stemHint->min;
132 hint->flags = CF2_GhostTop
313 CF2_Hint hint = &hintmap->edge[i]; local
    [all...]
  /external/freetype/src/pshinter/
pshrec.c 88 PS_Hint hint = NULL; local
101 hint = table->hints + count - 1;
102 hint->pos = 0;
103 hint->len = 0;
104 hint->flags = 0;
109 *ahint = hint;
281 /* return last hint mask in a table, create one if the table is empty */
565 /* set a bit at a given index in the current hint mask */
575 /* get last hint mask */
682 PS_Hint hint = dim->hints.hints local
    [all...]
pshalgo.c 83 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 set to check *
267 PSH_Hint hint = &table->hints[idx]; local
407 PSH_Hint hint = table->hints + count; local
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/libnl/lib/
addr.c 263 * @arg hint Address family hint or AF_UNSPEC.
279 * - {default|all|any}: All bits set to 0, length based on hint or
280 * AF_INET if no hint is given.
291 int nl_addr_parse(const char *addrstr, int hint, struct nl_addr **result)
308 family = hint;
318 switch (hint) {
322 * no hint given the user wants to have a IPv4
343 if (hint == AF_INET || hint == AF_UNSPEC)
760 struct addrinfo hint = { local
    [all...]
  /external/python/cpython2/Modules/_io/
iobase.c 594 "hint can be specified to control the number of lines read: no more\n"
596 "lines so far exceeds hint.");
601 Py_ssize_t hint = -1, length = 0; local
604 if (!PyArg_ParseTuple(args, "|O&:readlines", &_PyIO_ConvertSsize_t, &hint)) {
612 if (hint <= 0) {
649 if (line_length > hint - length)
  /external/python/cpython2/Modules/
cStringIO.c 249 Py_ssize_t hint = 0, length = 0; local
251 if (!PyArg_ParseTuple(args, "|n:readlines", &hint)) return NULL;
271 if (hint > 0 && length >= hint)
  /external/skia/src/core/
SkScalerContext.h 431 unsigned hint = (fFlags & SkScalerContext::kHinting_Mask) >> local
433 return static_cast<SkFontHinting>(hint);
  /external/skqp/src/core/
SkScalerContext.h 443 unsigned hint = (fFlags & SkScalerContext::kHinting_Mask) >> local
445 return static_cast<SkFontHinting>(hint);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 442 String hint = "No paramenter description."; local
444 hint = name + ": " + description;
446 hint = name;
448 hint = description;
450 hints[index] = hint;
  /external/toybox/toys/pending/
traceroute.c 182 struct addrinfo *info, hint; local
185 memset(&hint, 0, sizeof(hint));
186 hint.ai_family = family;
187 hint.ai_socktype = type;
188 hint.ai_protocol = proto;
190 ret = getaddrinfo(host, NULL, &hint, &info);
  /external/v8/src/compiler/
common-operator.h 29 // Prediction hint for branches.
32 inline BranchHint NegateBranchHint(BranchHint hint) {
33 switch (hint) {
35 return hint;
44 inline size_t hash_value(BranchHint hint) { return static_cast<size_t>(hint); }
76 BranchHint hint; member in struct:v8::internal::compiler::BranchOperatorInfo
81 return base::hash_combine(info.hint, info.is_safety_check);
88 return a.hint == b.hint && a.is_safety_check == b.is_safety_check
141 BranchHint hint() const { return hint_; } function in class:v8::internal::compiler::final
    [all...]
simplified-operator.h 56 WriteBarrierKind write_barrier_kind; // write barrier hint.
105 WriteBarrierKind write_barrier_kind; // write barrier hint.
435 // A hint for speculative number operations.
453 NumberOperationParameters(NumberOperationHint hint,
455 : hint_(hint), feedback_(feedback) {}
457 NumberOperationHint hint() const { return hint_; } function in class:v8::internal::AbortReason::NumberOperationParameters
593 const Operator* SpeculativeSafeIntegerAdd(NumberOperationHint hint);
594 const Operator* SpeculativeSafeIntegerSubtract(NumberOperationHint hint);
596 const Operator* SpeculativeNumberAdd(NumberOperationHint hint);
597 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint);
    [all...]
  /art/compiler/optimizing/
register_allocator_linear_scan.cc 697 int hint = current->FindFirstRegisterHint(free_until, liveness_); local
698 if ((hint != kNoRegister)
699 // For simplicity, if the hint we are getting for a pair cannot be used,
701 && !(current->IsLowInterval() && IsBlocked(GetHighForLowRegister(hint)))) {
702 DCHECK(!IsBlocked(hint));
703 reg = hint;
    [all...]
  /bionic/libc/kernel/uapi/scsi/
cxlflash_ioctl.h 93 __u64 hint; member in struct:dk_cxlflash_verify
  /external/deqp/modules/gles31/functional/
es31fNegativeStateApiTests.cpp 1419 void hint (NegativeTestContext& ctx) function in namespace:deqp::gles31::Functional::NegativeTestShared
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 41 int hint = 0; local
43 hint = stream.available() + CHUNK;
46 if (hint < CHUNK) {
47 hint = CHUNK;
49 byte[] buf = new byte[hint];
  /external/kernel-headers/original/uapi/scsi/
cxlflash_ioctl.h 142 __u64 hint; /* Reasons for verify */ member in struct:dk_cxlflash_verify
  /external/u-boot/arch/x86/include/asm/
sfi.h 86 u32 hint; /* MWAIT hint */ member in struct:sfi_cstate_table_entry
  /external/u-boot/include/bedbug/
ppc.h 32 unsigned int hint; /* A bitwise-inclusive-OR of the member in struct:operand
38 /* Values for operand hint */
325 unsigned int hint; /* A bitwise-inclusive-OR of the
324 unsigned int hint; \/* A bitwise-inclusive-OR of the member in struct:opcode
  /external/boringssl/src/tool/
transport_common.cc 148 struct addrinfo hint, *result; local
149 OPENSSL_memset(&hint, 0, sizeof(hint));
150 hint.ai_family = AF_UNSPEC;
151 hint.ai_socktype = SOCK_STREAM;
153 int ret = getaddrinfo(hostname.c_str(), port.c_str(), &hint, &result);
  /external/deqp/modules/gles2/functional/
es2fTextureMipmapTests.cpp 764 Texture2DGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int width, int height);
787 Texture2DGenMipmapCase::Texture2DGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int width, int height)
792 , m_hint (hint)
849 gl.hint(GL_GENERATE_MIPMAP_HINT, m_hint);
899 TextureCubeGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int size);
921 TextureCubeGenMipmapCase::TextureCubeGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int size)
926 , m_hint (hint)
1117 deUint32 hint; member in struct:deqp::gles2::Functional::__anon19670
    [all...]

Completed in 2066 milliseconds

1 23 4 5