Home
last modified time | relevance | path

Searched refs:UDM_MIN (Results 1 – 11 of 11) sorted by relevance

/dports/www/mnogosearch/mnogosearch-3.4.1/src/
H A Duconv.c155 size_t len= UDM_MIN(srclen, dstlen); in UdmConvLCase()
165 size_t len= UDM_MIN(srclen, dstlen); in UdmConvLCase()
H A Dpopularity.c187 UdmHexEncode(hex, str, UDM_MIN(end - str, ERROR_BYTES_TO_SHOW)); in UdmURLDataListUnpackPopularity()
H A Ddistance.c218 UdmWordDistanceAdd(nuniq, &dist, UDM_MIN(diff1, diff2)); in CalcAverageWordDistance()
H A Dsql-ctlib.c458 len = UDM_MIN(column->maxlength*2+2, MAX_CHAR_BUF); in ex_display_dlen()
463 len = UDM_MIN((2 * column->maxlength) + 2, MAX_CHAR_BUF); in ex_display_dlen()
H A Dvalue-str.c409 size_t minlen= UDM_MIN(Section1->Value.Val.length, Section2->Value.Val.length); in UdmValueSimpleMethodCompare()
454 length= UDM_MIN(UdmDSTRLength(&Section->Value), 1); in UdmValueSimpleMethodLeft()
H A Dhighlight.c610 size_t minlen= UDM_MIN(dstlength, srclength); in UdmRemoveHiLight()
H A Dhttp.c578 size_t nbytes= UDM_MIN(bytes_left, len); in UdmHTTPBufAppend()
H A Ddstr.c324 size_t minlen= UDM_MIN(s1->Val.length, s2->Val.length); in UdmDSTRCmp()
H A Dsql.c2269 … txt.length= cs->cset->well_formed_length(cs, txt.str, UDM_MIN(1024, txt.length), UDM_RECODE_HTML); in UdmStoreLinks()
2270 rel.length= cs->cset->well_formed_length(cs, rel.str, UDM_MIN(32, rel.length), UDM_RECODE_HTML); in UdmStoreLinks()
H A Ddbmode-blob.c2944 size_t nrows= UDM_MIN(ndocs_at_time, URLList->nitems - i); in UdmInvertedIndexCreateUsingURLIdLoop()
/dports/www/mnogosearch/mnogosearch-3.4.1/include/
H A Dudm_utils.h329 #define UDM_MIN(x,y) ((x) < (y) ? (x) : (y)) macro