Lines Matching refs:value
151 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument
155 bp[0] = value >> 24; in fdt32_st()
156 bp[1] = (value >> 16) & 0xff; in fdt32_st()
157 bp[2] = (value >> 8) & 0xff; in fdt32_st()
158 bp[3] = value & 0xff; in fdt32_st()
175 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument
179 bp[0] = value >> 56; in fdt64_st()
180 bp[1] = (value >> 48) & 0xff; in fdt64_st()
181 bp[2] = (value >> 40) & 0xff; in fdt64_st()
182 bp[3] = (value >> 32) & 0xff; in fdt64_st()
183 bp[4] = (value >> 24) & 0xff; in fdt64_st()
184 bp[5] = (value >> 16) & 0xff; in fdt64_st()
185 bp[6] = (value >> 8) & 0xff; in fdt64_st()
186 bp[7] = value & 0xff; in fdt64_st()