Lines Matching refs:outp
330 func readComps(outp *[]byte, compsSize uint32) (prog.CompMap, error) {
336 typ, ok := readUint32(outp)
346 op1, ok1 = readUint64(outp)
347 op2, ok2 = readUint64(outp)
350 tmp1, ok1 = readUint32(outp)
351 tmp2, ok2 = readUint32(outp)
373 func readUint32(outp *[]byte) (uint32, bool) {
374 out := *outp
379 *outp = out[4:]
383 func readUint64(outp *[]byte) (uint64, bool) {
384 out := *outp
389 *outp = out[8:]
393 func readUint32Array(outp *[]byte, size uint32) ([]uint32, bool) {
394 out := *outp
400 *outp = out[size*4:]