Lines Matching defs:cur
806 struct KeyFrameNode *cur = NULL; // current pointer
815 cur = (struct KeyFrameNode *)malloc(sizeof(struct KeyFrameNode));
816 if (cur == NULL) {
820 cur->pos = i;
821 cur->next = NULL;
823 tail->next = cur;
825 head = cur;
827 tail = cur;
843 struct KeyFrameNode *cur = key_frame_pos_list;
845 while (cur != NULL) {
846 next = cur->next;
847 free(cur);
848 cur = next;