Lines Matching refs:value
120 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument
124 bp[0] = value >> 24; in fdt32_st()
125 bp[1] = (value >> 16) & 0xff; in fdt32_st()
126 bp[2] = (value >> 8) & 0xff; in fdt32_st()
127 bp[3] = value & 0xff; in fdt32_st()
130 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument
134 bp[0] = value >> 56; in fdt64_st()
135 bp[1] = (value >> 48) & 0xff; in fdt64_st()
136 bp[2] = (value >> 40) & 0xff; in fdt64_st()
137 bp[3] = (value >> 32) & 0xff; in fdt64_st()
138 bp[4] = (value >> 24) & 0xff; in fdt64_st()
139 bp[5] = (value >> 16) & 0xff; in fdt64_st()
140 bp[6] = (value >> 8) & 0xff; in fdt64_st()
141 bp[7] = value & 0xff; in fdt64_st()