Searched defs:range (Results 226 - 250 of 365) sorted by relevance

1234567891011>>

/external/toybox/lib/
H A Dlib.c316 off_t base = 0, range = 1, expand = 1, old; local
334 off_t pos = base + range / 2;
340 if (expand) range = (expand <<= 1) - base;
341 else range -= delta;
344 range = pos - base;
346 } while (range > 0);
/external/v8/src/compiler/
H A Dscheduler.cc850 bool range = loops[i].header->LoopContains(block); local
852 PrintF(range ? "x" : " ");
856 PrintF(" range: [%d, %d)", block->rpo_number_, block->loop_end_);
/external/v8/src/
H A Dprofile-generator.cc603 OffsetRange& range = ranges->at(i); local
604 if (range.from <= pc_offset && pc_offset < range.to) {
/external/v8/test/cctest/
H A Dtest-regexp.cc481 CharacterRange& range = ranges->at(j); local
482 in_class = (range.from() <= i && i <= range.to());
616 Vector<uc16> range(ranges[i], 2 * kRangeSize);
618 range[j] = PseudoRandom(i + 25, j + 87) % kLimit;
620 range.Sort();
622 CHECK(range[j-1] <= range[j]);
629 uc16* range = ranges[i]; local
631 table.AddRange(CharacterRange(range[
637 uc16* range = ranges[j]; local
1610 CharacterRange range = ranges->at(i); local
[all...]
/external/webp/src/enc/
H A Dhistogram.c356 // The structure to keep track of cost range for the three dominant entropy
404 const double range = max - min + 1e-6; local
406 return (int)(NUM_PARTITIONS * delta / range);
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_hostap.c902 struct iw_range *range; local
914 range = os_zalloc(buflen);
915 if (range == NULL)
920 iwr.u.data.pointer = (caddr_t) range;
923 minlen = ((char *) &range->enc_capa) - (char *) range +
924 sizeof(range->enc_capa);
929 os_free(range);
932 range->we_version_compiled >= 18) {
935 range
[all...]
H A Ddriver_nl80211_event.c1452 struct wpa_freq_range *range = NULL; local
1468 range = os_calloc(count, sizeof(struct wpa_freq_range));
1469 if (range == NULL)
1476 range[idx].min = freq_range->range[i].start_freq;
1477 range[idx].max = freq_range->range[i].end_freq;
1478 wpa_printf(MSG_DEBUG, "nl80211: Avoid frequency range: %u-%u",
1479 range[idx].min, range[id
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c781 os_free(res->range);
782 res->range = freq;
798 if (freq >= list->range[i].min && freq <= list->range[i].max)
824 struct wpa_freq_range *range = &list->range[i]; local
826 if (range->min == range->max)
828 i == 0 ? "" : ",", range->min);
832 range
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_hostap.c902 struct iw_range *range; local
914 range = os_zalloc(buflen);
915 if (range == NULL)
920 iwr.u.data.pointer = (caddr_t) range;
923 minlen = ((char *) &range->enc_capa) - (char *) range +
924 sizeof(range->enc_capa);
929 os_free(range);
932 range->we_version_compiled >= 18) {
935 range
[all...]
H A Ddriver_nl80211_event.c1452 struct wpa_freq_range *range = NULL; local
1468 range = os_calloc(count, sizeof(struct wpa_freq_range));
1469 if (range == NULL)
1476 range[idx].min = freq_range->range[i].start_freq;
1477 range[idx].max = freq_range->range[i].end_freq;
1478 wpa_printf(MSG_DEBUG, "nl80211: Avoid frequency range: %u-%u",
1479 range[idx].min, range[id
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c781 os_free(res->range);
782 res->range = freq;
798 if (freq >= list->range[i].min && freq <= list->range[i].max)
824 struct wpa_freq_range *range = &list->range[i]; local
826 if (range->min == range->max)
828 i == 0 ? "" : ",", range->min);
832 range
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_hostap.c902 struct iw_range *range; local
914 range = os_zalloc(buflen);
915 if (range == NULL)
920 iwr.u.data.pointer = (caddr_t) range;
923 minlen = ((char *) &range->enc_capa) - (char *) range +
924 sizeof(range->enc_capa);
929 os_free(range);
932 range->we_version_compiled >= 18) {
935 range
[all...]
H A Ddriver_nl80211_event.c1452 struct wpa_freq_range *range = NULL; local
1468 range = os_calloc(count, sizeof(struct wpa_freq_range));
1469 if (range == NULL)
1476 range[idx].min = freq_range->range[i].start_freq;
1477 range[idx].max = freq_range->range[i].end_freq;
1478 wpa_printf(MSG_DEBUG, "nl80211: Avoid frequency range: %u-%u",
1479 range[idx].min, range[id
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c781 os_free(res->range);
782 res->range = freq;
798 if (freq >= list->range[i].min && freq <= list->range[i].max)
824 struct wpa_freq_range *range = &list->range[i]; local
826 if (range->min == range->max)
828 i == 0 ? "" : ",", range->min);
832 range
[all...]
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Drequest.py1110 range = converter( variable in class:BaseRequest
/external/clang/include/clang/AST/
H A DStmtOpenMP.h133 /// \brief A filter to iterate over 'linear' clauses using a C++ range
147 friend linear_filter begin(const linear_filter &range) { return range; } argument
148 friend linear_filter end(const linear_filter &range) { argument
149 return linear_filter(ArrayRef<OMPClause *>(range.End, range.End));
/external/clang/lib/Sema/
H A DSemaCast.cpp307 SourceRange range, Expr *src,
330 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
331 range, listInitialization)
332 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
334 : InitializationKind::CreateCast(/*type range?*/ range);
372 S.Diag(range.getBegin(), msg)
374 << range << src->getSourceRange();
306 tryDiagnoseOverloadedCast(Sema &S, CastType CT, SourceRange range, Expr *src, QualType destType, bool listInitialization) argument
/external/deqp/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp645 Vec2 range = getFloatRange(output.precision); local
646 Vec4 minVal (range.x());
647 Vec4 maxVal (range.y());
653 // limit value range to intersection of both data type and render target value ranges.
659 m_testCtx.getLog() << TestLog::Message << "out" << curInVec << " value range: " << valueRangeToString(numScalars, minVal, maxVal) << TestLog::EndMessage;
681 const IVec2 range = getIntRange(output.precision); local
682 IVec4 minVal (range.x());
683 IVec4 maxVal (range.y());
687 // Limit to range of output format as conversion mode is not specified.
697 m_testCtx.getLog() << TestLog::Message << "out" << curInVec << " value range
721 const UVec2 range = getUintRange(output.precision); local
[all...]
H A Des3fShaderStateQueryTests.cpp227 << "// ERROR: expected in range "
3545 gls::StateQueryUtil::StateQueryMemoryWriteGuard<glw::GLint[2]> range; local
3549 glGetShaderPrecisionFormat(m_shaderType, m_precisionType, range, &precision);
3552 if (!range.verifyValidity(m_testCtx))
3559 << "range[0] = " << range[0] << "\n"
3560 << "range[1] = " << range[1] << "\n"
3570 if (range[0] != expected.negativeRange ||
3571 range[
[all...]
/external/fio/
H A Dgraph.c244 double domain, range, v; local
247 range = (double) bg->ydim * 0.80; /* FIXME */
258 y1 = y2 - (((v - mindata) / domain) * range);
/external/harfbuzz_ng/src/
H A Dhb-coretext.cc519 /* Scan events and save features for each range. */
528 /* Save a snapshot of active features and the range. */
529 range_record_t *range = range_records.push (); local
530 if (unlikely (!range))
574 range->font = CTFontCreateCopyWithAttributes (font_data->ct_font, 0.0, NULL, font_desc);
579 range->font = NULL;
582 range->index_first = last_index;
583 range->index_last = event->index - 1;
740 range_record_t *range = last_range; local
741 while (log_clusters[k] < range
867 CFRange range = CTRunGetStringRange (run); local
[all...]
H A Dhb-ot-layout-common-private.hh151 GlyphID start; /* First GlyphID in the range */
152 GlyphID end; /* Last GlyphID in the range */
298 * "range start" == 0 and
299 * "range end" == 0 and
300 * "range start" == 0 and
303 * specified, but there is no recommended size range.
305 * Else if ("design size" < "range start" or
306 * "design size" > "range end" or
307 * "range end" <= "range star
702 const RangeRecord &range = rangeRecord[i]; local
724 unsigned int range = 0; local
749 const RangeRecord &range = rangeRecord[i]; local
[all...]
/external/icu/icu4c/source/common/
H A Ducnvmbcs.cpp1123 const uint32_t *range; local
1126 range=gb18030Ranges[0];
1127 for(i=0; i<UPRV_LENGTHOF(gb18030Ranges); range+=4, ++i) {
1128 if(range[0]<=(uint32_t)cp && (uint32_t)cp<=range[1]) {
1133 /* get the linear value of the first GB 18030 code in this range */
1134 linear=range[2]-LINEAR_18030_BASE;
1136 /* add the offset from the beginning of the range */
1137 linear+=((uint32_t)cp-range[0]);
1188 const uint32_t *range; local
[all...]
H A Dunames.cpp850 getAlgName(AlgorithmicRange *range, uint32_t code, UCharNameChoice nameChoice, argument
863 switch(range->type) {
866 const char *s=(const char *)(range+1);
877 count=range->variant;
903 const uint16_t *factors=(const uint16_t *)(range+1);
904 uint16_t count=range->variant;
914 s, code-range->start, indexes, NULL, NULL, buffer, bufferLength);
934 enumAlgNames(AlgorithmicRange *range, argument
945 switch(range->type) {
951 length=getAlgName(range, (uint32_
1076 findAlgName(AlgorithmicRange *range, UCharNameChoice nameChoice, const char *otherName) argument
1215 AlgorithmicRange *range; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dastro.cpp209 * Given 'value', add or subtract 'range' until 0 <= 'value' < range.
212 inline static double normalize(double value, double range) { argument
213 return value - range * ClockMath::floorDivide(value, range);
217 * Normalize an angle so that it's in the range 0 - 2pi.
226 * Normalize an angle into the range -PI - PI
1168 * The returned phase is a <code>double</code> in the range
1316 // this loop we use normPI to get values in the range -Pi to Pi,

Completed in 677 milliseconds

1234567891011>>