Examples of toInt()


Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

      v1 += er.toInt(data, i);
      i += 4;

      v2 += Integer.rotateLeft(v2, 11);
      v2 *= PRIME1;
      v2 += er.toInt(data, i);
      i += 4;

      v3 += Integer.rotateLeft(v3, 17);
      v3 *= PRIME1;
      v3 += er.toInt(data, i);
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

      v2 += er.toInt(data, i);
      i += 4;

      v3 += Integer.rotateLeft(v3, 17);
      v3 *= PRIME1;
      v3 += er.toInt(data, i);
      i += 4;

      v4 += Integer.rotateLeft(v4, 19);
      v4 *= PRIME1;
      v4 += er.toInt(data, i);
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

      v3 += er.toInt(data, i);
      i += 4;

      v4 += Integer.rotateLeft(v4, 19);
      v4 *= PRIME1;
      v4 += er.toInt(data, i);
      i += 4;

    }
   
    i = bEnd - 16;
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

    v1 *= PRIME1;
    v2 *= PRIME1;
    v3 *= PRIME1;
    v4 *= PRIME1;
   
    v1 += er.toInt(data, i);
    i += 4;
    v2 += er.toInt(data, i);
    i += 4;
    v3 += er.toInt(data, i);
    i += 4;
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

    v3 *= PRIME1;
    v4 *= PRIME1;
   
    v1 += er.toInt(data, i);
    i += 4;
    v2 += er.toInt(data, i);
    i += 4;
    v3 += er.toInt(data, i);
    i += 4;
    v4 += er.toInt(data, i);
   
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

   
    v1 += er.toInt(data, i);
    i += 4;
    v2 += er.toInt(data, i);
    i += 4;
    v3 += er.toInt(data, i);
    i += 4;
    v4 += er.toInt(data, i);
   
    v1 *= PRIME2;
    v2 *= PRIME2;
View Full Code Here

Examples of at.orz.hash.EncodeUtils.EndianReader.toInt()

    i += 4;
    v2 += er.toInt(data, i);
    i += 4;
    v3 += er.toInt(data, i);
    i += 4;
    v4 += er.toInt(data, i);
   
    v1 *= PRIME2;
    v2 *= PRIME2;
    v3 *= PRIME2;
    v4 *= PRIME2;
View Full Code Here

Examples of ch.qos.logback.classic.Level.toInt()

      ILoggingEvent event = (ILoggingEvent) e;

      // Note that we can get the unformatted message in getMessage(), presumably along with the parameters...
      String message = event.getFormattedMessage();
      Level level = event.getLevel();
      int levelInt = level.toInt();

      List<String[]> exceptionStacks = null;

      IThrowableProxy throwableInformation = event.getThrowableProxy();
      while (throwableInformation != null) {
View Full Code Here

Examples of com.caucho.quercus.env.LongValue.toInt()

      int size = _preparedMapping.size();

      for (int i = 0; i < size; i++) {
        LongValue param = _preparedMapping.get(i);

        Value paramV = getParam(param.toInt()-1);

        if (paramV.equals(UnsetValue.UNSET)) {
          env.warning(L.l("Not all parameters are bound"));
          return false;
        }
View Full Code Here

Examples of com.caucho.quercus.env.Value.toInt()

         
          if (value.isNull()) {
            result.append(entity);
          }
          else if (isUnicode) {
            result.append((char)value.toInt());           
          }
          else {
            out.write(result, (char)value.toInt());           
          }
         
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.