Home | History | Annotate | Download | only in elfcpp

Lines Matching refs:writeval

221 // writeval.  The functions read and write values of the appropriate
223 // writeval are overloaded to take pointers to the appropriate type or
236 writeval(Valtype* wv, Valtype v)
244 writeval(unsigned char* wv, Valtype v)
245 { writeval(reinterpret_cast<Valtype*>(wv), v); }
249 // conflicting overloads, since both versions of readval and writeval
262 writeval(Valtype* wv, Valtype v)
268 // functions readval and writeval. The functions read and write
285 writeval(unsigned char* wv, Valtype v)
301 writeval(unsigned char* wv, Valtype v)
320 writeval(unsigned char* wv, Valtype v)
339 writeval(unsigned char* wv, Valtype v)
360 writeval(unsigned char* wv, Valtype v)
388 writeval(unsigned char* wv, Valtype v)
420 writeval(unsigned char* wv, Valtype v)
435 // functions readval and writeval. The functions read and write
450 writeval(unsigned char* wv, Valtype v)
451 { Swap<size, big_endian>::writeval(reinterpret_cast<Valtype*>(wv), v); }
467 writeval(unsigned char* wv, Valtype v)
471 Swap<32, true>::writeval(wv, static_cast<Valtype32>(v >> 32));
472 Swap<32, true>::writeval(wv + 4, static_cast<Valtype32>(v));
489 writeval(unsigned char* wv, Valtype v)
493 Swap<32, false>::writeval(wv + 4, static_cast<Valtype32>(v >> 32));
494 Swap<32, false>::writeval(wv, static_cast<Valtype32>(v));