Home
last modified time | relevance | path

Searched refs:max2 (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/drivers/media/video/
Dmsp3400.c773 int count, max1,max2,val1,val2, val,this; in msp3400c_thread() local
824 max1 = max2 = -1; in msp3400c_thread()
873 cd = NULL; count = 0; max2 = 0; in msp3400c_thread()
889 val2 = val, max2 = this; in msp3400c_thread()
897 if (max2 == 0) { in msp3400c_thread()
899 msp->second = carrier_detect_55[max2].cdo; in msp3400c_thread()
904 } else if (max2 == 1 && HAVE_NICAM(msp)) { in msp3400c_thread()
906 msp->second = carrier_detect_55[max2].cdo; in msp3400c_thread()
924 if (max2 == 1 || max2 == 2) { in msp3400c_thread()
926 msp->second = carrier_detect_65[max2].cdo; in msp3400c_thread()
[all …]
/linux-2.4.37.9/net/core/
Dnetfilter.c84 static inline int overlap(int min1, int max1, int min2, int max2) in overlap() argument
86 return max1 > min2 && min1 < max2; in overlap()