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;
671 * ...stack 0 is source 1 value
672 * ...stack 1 is source 2 value
673 * ...stack 2 is mask value
696 * ...stack 0 is integer value
866 * force the value to 127
1004 * ...stack 0 is step value
1005 * ...stack 1 is end value
1073 * Exchange top with Nth stack value
1086 * Duplicate Nth stack value
1099 * ...stack 0 is value
1110 * ...stack 1 is value
1162 /* pop the value and store it into the array */
1173 * ...stack 2 is value
1295 * ...stack 0 is condition value
2116 char *key, char *value, int keylen, int vallen)
2118 * Gets key and value of NOTE fields in the JBC file.
2158 * and return only the value
2172 if (value != NULL)
2173 strlcpy(value, value_ptr, vallen);
2180 * and return both the value and the key
2194 if (value != NULL)
2195 strlcpy(value, &p[note_strings +
2408 char *value = NULL;
2426 value = kzalloc(257, GFP_KERNEL);
2427 if (!value) {
2452 &offset, key, value, 32, 256) == 0)
2454 __func__, key, value);
2516 kfree(value);