Lines Matching refs:list

295 	QRinput_List *list, *next;
298 list = input->head;
299 while(list != NULL) {
300 next = list->next;
301 QRinput_List_freeEntry(list);
302 list = next;
311 QRinput_List *list;
314 list = input->head;
315 while(list != NULL) {
316 if(list->mode != QR_MODE_STRUCTURE) {
317 for(i=list->size-1; i>=0; i--) {
318 parity ^= list->data[i];
321 list = list->next;
330 QRinput_List *list, *e;
339 list = input->head;
340 while(list != NULL) {
341 e = QRinput_List_dup(list);
347 list = list->next;
961 QRinput_List *list;
964 list = input->head;
965 while(list != NULL) {
966 bits += QRinput_estimateBitStreamSizeOfEntry(list, version, input->mqr);
967 list = list->next;
1129 QRinput_List *list;
1132 list = input->head;
1133 while(list != NULL) {
1134 bits = QRinput_encodeBitStream(list, input->version, input->mqr);
1137 list = list->next;
1358 QRinput_List *list;
1379 list = input->head;
1380 while(list != NULL) {
1381 ret = BitStream_append(bstream, list->bstream);
1386 list = list->next;
1512 QRinput_InputList *list, *next;
1515 list = s->head;
1516 while(list != NULL) {
1517 next = list->next;
1518 QRinput_InputList_freeEntry(list);
1519 list = next;
1527 QRinput_InputList *list;
1530 list = s->head;
1531 while(list != NULL) {
1532 parity ^= QRinput_calcParity(list->input);
1533 list = list->next;
1583 QRinput_List *list, *next, *prev;
1609 list = input->head;
1611 while(list != NULL) {
1612 nextbits = QRinput_estimateBitStreamSizeOfEntry(list, input->version, input->mqr);
1614 ret = QRinput_encodeBitStream(list, input->version, input->mqr);
1617 prev = list;
1618 list = list->next;
1620 bytes = QRinput_lengthOfCode(list->mode, input->version, maxbits - bits);
1623 ret = QRinput_splitEntry(list, bytes);
1626 next = list->next;
1627 list->next = NULL;
1634 input->tail = list;
1636 prev = list;
1637 list = next;
1643 p->head = list;
1676 QRinput_InputList *list;
1682 list = s->head;
1683 while(list != NULL) {
1685 list = list->next;
1688 list = s->head;
1689 while(list != NULL) {
1690 if(QRinput_insertStructuredAppendHeader(list->input, num, i, s->parity))
1693 list = list->next;