Lines Matching refs:value
130 static void altera_export_int(char *key, s32 value)
132 dprintk("Export: key = \"%s\", value = %d\n", key, value);
142 u32 size, line, lines, linebits, value, j, k;
145 dprintk("Export: key = \"%s\", %d bits, value = HEX\n",
163 value = 0;
168 value |= (1 << (i & 3));
170 sprintf(&string[j], "%1x", value);
171 value = 0;
176 sprintf(&string[j], "%1x", value);
185 value = 0;
189 value |= (1 << (i & 3));
191 sprintf(&string[j], "%1x", value);
192 value = 0;
197 sprintf(&string[j], "%1x", value);
199 dprintk("Export: key = \"%s\", %d bits, value = HEX %s\n",
257 u32 value;
327 value = get_unaligned_be32(&p[offset + 3 + delta]);
353 vars[i] = value;
356 uncomp_size = get_unaligned_le32(&p[data_sect + value]);
367 if (altera_shrink(&p[data_sect + value],
380 vars[i] = value + data_sect + (long)p;
383 vars[i] = value + data_sect;
668 * ...stack 0 is source 1 value
669 * ...stack 1 is source 2 value
670 * ...stack 2 is mask value
693 * ...stack 0 is integer value
863 * force the value to 127
983 * ...stack 0 is step value
984 * ...stack 1 is end value
1052 * Exchange top with Nth stack value
1062 * Duplicate Nth stack value
1075 * ...stack 0 is value
1086 * ...stack 1 is value
1138 /* pop the value and store it into the array */
1149 * ...stack 2 is value
1271 * ...stack 0 is condition value
2092 char *key, char *value, int keylen, int vallen)
2094 * Gets key and value of NOTE fields in the JBC file.
2134 * and return only the value
2148 if (value != NULL)
2149 strscpy(value, value_ptr, vallen);
2156 * and return both the value and the key
2170 if (value != NULL)
2171 strscpy(value, &p[note_strings +
2379 char *value = NULL;
2397 value = kzalloc(257, GFP_KERNEL);
2398 if (!value) {
2427 &offset, key, value, 32, 256) == 0)
2429 __func__, key, value);
2491 kfree(value);