Lines Matching refs:float2
388 static __device__ float2* p1_pos(int n) in p1_pos()
390 return (float2*)(c_templFeatures.p1_pos_data + n * c_templFeatures.p1_pos_step); in p1_pos()
396 static __device__ float2* p2_pos(int n) in p2_pos()
398 return (float2*)(c_templFeatures.p2_pos_data + n * c_templFeatures.p2_pos_step); in p2_pos()
406 static __device__ float2* r1(int n) in r1()
408 return (float2*)(c_templFeatures.r1_data + n * c_templFeatures.r1_step); in r1()
410 static __device__ float2* r2(int n) in r2()
412 return (float2*)(c_templFeatures.r2_data + n * c_templFeatures.r2_step); in r2()
417 static __device__ float2* p1_pos(int n) in p1_pos()
419 return (float2*)(c_imageFeatures.p1_pos_data + n * c_imageFeatures.p1_pos_step); in p1_pos()
425 static __device__ float2* p2_pos(int n) in p2_pos()
427 return (float2*)(c_imageFeatures.p2_pos_data + n * c_imageFeatures.p2_pos_step); in p2_pos()
435 static __device__ float2* r1(int n) in r1()
437 return (float2*)(c_imageFeatures.r1_data + n * c_imageFeatures.r1_step); in r1()
439 static __device__ float2* r2(int n) in r2()
441 return (float2*)(c_imageFeatures.r2_data + n * c_imageFeatures.r2_step); in r2()
466 const float2 center, const float maxDist) in Guil_Full_buildFeatureList()
470 float2 p1_pos; in Guil_Full_buildFeatureList()
478 float2 p2_pos; in Guil_Full_buildFeatureList()
484 const float2 d = p1_pos - p2_pos; in Guil_Full_buildFeatureList()
492 float2 r1 = p1_pos - center; in Guil_Full_buildFeatureList()
493 float2 r2 = p2_pos - center; in Guil_Full_buildFeatureList()
525 float2 center, float maxDist) in Guil_Full_buildFeatureList_caller()
547 float2 center, float maxDist) in Guil_Full_buildTemplFeatureList_gpu()
557 float2 center, float maxDist) in Guil_Full_buildImageFeatureList_gpu()
703 float2 r1 = TemplFeatureTable::r1(level)[tIdx]; in Guil_Full_calcPHist()
704 float2 r2 = TemplFeatureTable::r2(level)[tIdx]; in Guil_Full_calcPHist()
716 const float2 im_p1_pos = ImageFeatureTable::p1_pos(level)[i]; in Guil_Full_calcPHist()
717 const float2 im_p2_pos = ImageFeatureTable::p2_pos(level)[i]; in Guil_Full_calcPHist()
721 float2 c1, c2; in Guil_Full_calcPHist()