OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ipt
(Results
1 - 4
of
4
) sorted by null
/external/qemu/slirp/
ip_input.c
505
register struct ip_timestamp *
ipt
;
local
629
ipt
= (struct ip_timestamp *)cp;
630
if (
ipt
->ipt_len < 5)
632
if (
ipt
->ipt_ptr >
ipt
->ipt_len - sizeof (int32_t)) {
633
if (++
ipt
->ipt_oflw == 0)
637
sin = (struct in_addr *)(cp +
ipt
->ipt_ptr - 1);
638
switch (
ipt
->ipt_flg) {
644
if (
ipt
->ipt_ptr + sizeof(n_time) +
645
sizeof(struct in_addr) >
ipt
->ipt_len
[
all
...]
/external/qemu/slirp-android/
ip_input.c
505
register struct ip_timestamp *
ipt
;
local
629
ipt
= (struct ip_timestamp *)cp;
630
if (
ipt
->ipt_len < 5)
632
if (
ipt
->ipt_ptr >
ipt
->ipt_len - sizeof (int32_t)) {
633
if (++
ipt
->ipt_oflw == 0)
637
sin = (struct in_addr *)(cp +
ipt
->ipt_ptr - 1);
638
switch (
ipt
->ipt_flg) {
644
if (
ipt
->ipt_ptr + sizeof(n_time) +
645
sizeof(struct in_addr) >
ipt
->ipt_len
[
all
...]
/external/opencv/cv/src/
cvlkpyramid.cpp
49
CvPoint
ipt
;
local
51
ipt
.x = cvFloor( pt.x );
52
ipt
.y = cvFloor( pt.y );
54
ipt
.x -= win_size.width;
55
ipt
.y -= win_size.height;
60
min_pt->x = MAX( 0, -
ipt
.x );
61
min_pt->y = MAX( 0, -
ipt
.y );
62
max_pt->x = MIN( win_size.width, imgSize.width -
ipt
.x );
63
max_pt->y = MIN( win_size.height, imgSize.height -
ipt
.y );
[
all
...]
/external/opencv/cxcore/include/
cxtypes.h
955
CvPoint
ipt
;
local
956
ipt
.x = cvRound(point.x);
957
ipt
.y = cvRound(point.y);
959
return
ipt
;
[
all
...]
Completed in 76 milliseconds