Lines Matching refs:operations

84     private long[] operations;
97 public long operations;
116 if ((fields & FIELD_OPERATIONS) != 0) operations = new long[initialSize];
134 operations = readLongArray(in);
148 writeLongArray(out, operations, bucketCount);
162 operations = new long[bucketStart.length];
177 operations = readVarLongArray(in);
189 || txPackets.length != bucketCount || operations.length != bucketCount) {
203 writeVarLongArray(out, operations, bucketCount);
282 entry.operations = getLong(operations, i, UNKNOWN);
297 setLong(operations, i, entry.operations);
323 long operations = entry.operations;
355 final long fracOperations = operations * overlap / duration;
362 addLong(this.operations, i, fracOperations); operations -= fracOperations;
397 entry.operations = getLong(input.operations, i, 0L);
434 if (operations != null) operations = Arrays.copyOf(operations, newLength);
448 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
457 setLong(operations, index, 0L);
484 if (operations != null) operations = Arrays.copyOfRange(operations, i, length);
512 entry.operations = operations != null ? 0 : UNKNOWN;
542 if (operations != null) entry.operations += operations[i] * overlap / bucketDuration;
560 final long operations = rxBytes / 2048;
562 generateRandom(start, end, rxBytes, rxPackets, txBytes, txPackets, operations, r);
570 long txPackets, long operations, Random r) {
576 || operations > 32) {
584 entry.operations = randomLong(r, 0, operations);
590 operations -= entry.operations;
629 if (operations != null) { pw.print(" op="); pw.print(operations[i]); }
648 if (operations != null) { pw.print(operations[i]); } else { pw.print("*"); }
666 writeToProto(proto, NetworkStatsHistoryBucketProto.OPERATIONS, operations, i);