Home | History | Annotate | Download | only in libxml2

Lines Matching refs:rg

364 	    for rg in rangeTable:
369 if rg[0] == rg[1]: # single value - check equal
370 pline += "((c) == 0x%x)" % rg[0]
373 if rg[1] != 0xff:
374 pline += "((0x%x <= (c)) &&" % rg[0]
375 pline += " ((c) <= 0x%x))" % rg[1]
377 pline += " (0x%x <= (c))" % rg[0]
411 for rg in Functs[f][1]:
417 if rg[0] == rg[1]: # single value - check equal
418 pline += "((c) == 0x%x)" % rg[0]
420 pline += "((0x%x <= (c)) &&" % rg[0]
421 pline += " ((c) <= 0x%x))" % rg[1]
440 for rg in rangeTable:
441 if rg[1] < 0x10000: # if short value
450 pline += "{0x%x, 0x%x}" % (rg[0], rg[1])
462 pline += "{0x%x, 0x%x}" % (rg[0], rg[1])