HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 326 - 350 of 5424) sorted by null

<<11121314151617181920>>

  /bionic/tests/
libgen_basename_test.cpp 46 const char* out = gnu_basename(in); local
47 ASSERT_STREQ(expected_out, out) << "(" << line << "): " << in << std::endl;
54 const char* out = posix_basename(&writable_in[0]); local
55 ASSERT_STREQ(expected_out, out) << "(" << line << "): " << in << std::endl;
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
ConfirmCredentialsTx.java 49 public void writeToParcel(Parcel out, int flags) {
50 out.writeParcelable(account, flags);
51 out.writeBundle(options);
52 out.writeBundle(result);
GetAccountRemovalAllowedTx.java 45 public void writeToParcel(Parcel out, int flags) {
46 out.writeParcelable(account, flags);
47 out.writeBundle(result);
GetAuthTokenTx.java 53 public void writeToParcel(Parcel out, int flags) {
54 out.writeParcelable(account, flags);
55 out.writeString(authTokenType);
56 out.writeBundle(options);
57 out.writeBundle(result);
HasFeaturesTx.java 56 public void writeToParcel(Parcel out, int flags) {
57 out.writeParcelable(account, flags);
58 out.writeStringList(features);
59 out.writeBundle(result);
StartUpdateCredentialsSessionTx.java 49 public void writeToParcel(Parcel out, int flags) {
50 out.writeParcelable(account, flags);
51 out.writeString(authTokenType);
52 out.writeBundle(options);
UpdateCredentialsTx.java 53 public void writeToParcel(Parcel out, int flags) {
54 out.writeParcelable(account, flags);
55 out.writeString(authTokenType);
56 out.writeBundle(options);
57 out.writeBundle(result);
  /cts/tests/tests/media/libndkaudio/
WaveTableOscillator.cpp 88 float out = ((waveTable_[srcIndex] * delta1) local
91 outBuff[dstIndex++] = out;
92 outBuff[dstIndex++] = out;
  /dalvik/dx/src/com/android/dex/
EncodedValueCodec.java 30 * Writes a signed integral to {@code out}.
32 public static void writeSignedIntegralValue(ByteOutput out, int type, long value) {
34 * Figure out how many bits are needed to represent the value,
51 out.writeByte(type | ((requiredBytes - 1) << 5));
55 out.writeByte((byte) value);
62 * Writes an unsigned integral to {@code out}.
64 public static void writeUnsignedIntegralValue(ByteOutput out, int type, long value) {
65 // Figure out how many bits are needed to represent the value.
78 out.writeByte(type | ((requiredBytes - 1) << 5));
82 out.writeByte((byte) value)
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
DxContext.java 16 public final PrintStream out; field in class:DxContext
27 public DxContext(OutputStream out, OutputStream err) {
28 this.out = new PrintStream(out);
33 this(System.out, System.err);
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 33 * the current text out and new text in when
53 * Set the in and out animations. Using the fade_in/out animations
58 Animation out = AnimationUtils.loadAnimation(this, local
61 mSwitcher.setOutAnimation(out);
67 * automatically animated using the in/out animations set above.
  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 33 * the current text out and new text in when
53 * Set the in and out animations. Using the fade_in/out animations
58 Animation out = AnimationUtils.loadAnimation(this, local
61 mSwitcher.setOutAnimation(out);
67 * automatically animated using the in/out animations set above.
  /development/cmds/monkey/src/com/android/commands/monkey/
Logger.java 24 public static Logger out = new Logger() { field in class:Logger
27 System.out.println(s);
  /development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/
MainActivity.java 33 * the current text out and new text in when
53 * Set the in and out animations. Using the fade_in/out animations
58 Animation out = AnimationUtils.loadAnimation(this, local
61 mSwitcher.setOutAnimation(out);
67 * automatically animated using the in/out animations set above.
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 35 uint8_t out; member in class:AndroidAccessory
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
OpenMapRealMatrix.java 108 final OpenMapRealMatrix out = new OpenMapRealMatrix(this); local
113 out.setEntry(row, col, getEntry(row, col) + iterator.value());
116 return out;
143 final OpenMapRealMatrix out = new OpenMapRealMatrix(this); local
148 out.setEntry(row, col, getEntry(row, col) - iterator.value());
151 return out;
167 final BlockRealMatrix out = new BlockRealMatrix(rows, outCols); local
175 out.addToEntry(i, j, value * m.getEntry(k, j));
179 return out;
198 OpenMapRealMatrix out = new OpenMapRealMatrix(rows, outCols) local
    [all...]
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
RandomAccessFileInputStreamTest.java 60 FileOutputStream out = new FileOutputStream(tempFile); local
61 out.write(testData);
62 out.flush();
63 out.close();
100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
106 out.write(buffer, 0, numRead);
110 Assert.assertArrayEquals(testData, out.toByteArray());
121 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
127 out.write(buffer, 0, numRead);
131 Assert.assertArrayEquals(testData, out.toByteArray())
    [all...]
  /external/boringssl/src/crypto/cmac/
cmac_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
33 uint8_t out[16]; local
34 ASSERT_TRUE(AES_CMAC(out, key, key_len, msg, msg_len));
35 EXPECT_EQ(Bytes(expected, sizeof(out)), Bytes(out));
54 ASSERT_TRUE(CMAC_Final(ctx.get(), out, &out_len));
55 EXPECT_EQ(Bytes(expected, sizeof(out)), Bytes(out, out_len));
  /external/boringssl/src/crypto/curve25519/
x25519_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
40 uint8_t out[32]; local
41 EXPECT_TRUE(X25519(out, kScalar1, kPoint1));
48 EXPECT_EQ(Bytes(kExpected1), Bytes(out));
61 EXPECT_TRUE(X25519(out, kScalar2, kPoint2));
68 EXPECT_EQ(Bytes(kExpected2), Bytes(out));
78 uint8_t out[32], private_key[32]; local
81 OPENSSL_memset(out, 0xff, sizeof(out));
82 EXPECT_FALSE(X25519(out, private_key, kSmallOrderPoint)
92 uint8_t scalar[32] = {9}, point[32] = {9}, out[32]; local
    [all...]
  /external/boringssl/src/crypto/hkdf/
hkdf_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
35 const uint8_t out[82]; member in struct:HKDFTestVector
261 EXPECT_EQ(Bytes(test->out, test->out_len), Bytes(buf, test->out_len));
266 EXPECT_EQ(Bytes(test->out, test->out_len), Bytes(buf, test->out_len));
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 140 sub out {
196 sub out {
252 sub out {
361 sub out {
386 sub out {
456 sub out {
696 sub out {
927 sub out {
139 sub out { subroutine
195 sub out { subroutine
251 sub out { subroutine
360 sub out { subroutine
385 sub out { subroutine
455 sub out { subroutine
695 sub out { subroutine
926 sub out { subroutine
    [all...]
  /external/boringssl/src/fipstools/
cavp_hmac_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
71 uint8_t out[EVP_MAX_MD_SIZE]; local
72 if (HMAC(md, key.data(), k_len, msg.data(), msg.size(), out, &out_len) ==
82 printf("Mac = %s\r\n\r\n", EncodeHex(out, t_len).c_str());
cavp_sha_monte_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
56 std::vector<uint8_t> out = seed; local
62 msg.insert(msg.end(), out.begin(), out.end());
63 msg.insert(msg.end(), out.begin(), out.end());
64 msg.insert(msg.end(), out.begin(), out.end());
67 if (!EVP_Digest(msg.data(), msg.size(), out.data(), &digest_len, md,
69 digest_len != out.size())
    [all...]
cavp_sha_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
63 std::vector<uint8_t> out; local
64 out.resize(md_len);
66 if (!EVP_Digest(msg.data(), msg_len, out.data(), &digest_len, md, nullptr) ||
67 digest_len != out.size()) {
72 printf("MD = %s\r\n\r\n", EncodeHex(out.data(), out.size()).c_str());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERSet.java 63 ASN1OutputStream out)
66 out.write(BERTags.SET | BERTags.CONSTRUCTED);
67 out.write(0x80);
72 out.writeObject((ASN1Encodable)e.nextElement());
75 out.write(0x00);
76 out.write(0x00);

Completed in 1359 milliseconds

<<11121314151617181920>>