Home
last modified time | relevance | path

Searched refs:op1 (Results 1 – 3 of 3) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dconfigparser.y61 if (op1->type != op2->type) { in configparser_merge_data()
62 if (op1->type == TYPE_STRING && op2->type == TYPE_INTEGER) { in configparser_merge_data()
63 data_string *ds = (data_string *)op1; in configparser_merge_data()
65 return op1; in configparser_merge_data()
66 } else if (op1->type == TYPE_INTEGER && op2->type == TYPE_STRING) { in configparser_merge_data()
68 buffer_append_long(ds->value, ((data_integer*)op1)->value); in configparser_merge_data()
70 op1->free(op1); in configparser_merge_data()
78 switch (op1->type) { in configparser_merge_data()
83 ((data_integer *)op1)->value += ((data_integer *)op2)->value; in configparser_merge_data()
86 array *dst = ((data_array *)op1)->value; in configparser_merge_data()
[all …]
H A Dconfigparser.c64 if (op1->type != op2->type) { in configparser_merge_data()
65 if (op1->type == TYPE_STRING && op2->type == TYPE_INTEGER) { in configparser_merge_data()
66 data_string *ds = (data_string *)op1; in configparser_merge_data()
68 return op1; in configparser_merge_data()
69 } else if (op1->type == TYPE_INTEGER && op2->type == TYPE_STRING) { in configparser_merge_data()
71 buffer_append_long(ds->value, ((data_integer*)op1)->value); in configparser_merge_data()
73 op1->free(op1); in configparser_merge_data()
81 switch (op1->type) { in configparser_merge_data()
86 ((data_integer *)op1)->value += ((data_integer *)op2)->value; in configparser_merge_data()
89 array *dst = ((data_array *)op1)->value; in configparser_merge_data()
[all …]
H A Dconfigfile.h22 data_unset *configparser_merge_data(data_unset *op1, const data_unset *op2);