/external/openssl/crypto/bn/ |
exptest.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 114 BIO *out=NULL; local 138 out=BIO_new(BIO_s_file()); 140 if (out == NULL) EXIT(1); 141 BIO_set_fp(out,stdout,BIO_NOCLOSE); 164 ERR_print_errors(out); 172 ERR_print_errors(out); 180 ERR_print_errors(out); 188 ERR_print_errors(out); [all...] |
/external/openssl/crypto/des/ |
fcrypt.c | 103 DES_LONG out[2],ll; local 144 fcrypt_body(&(out[0]),&ks,Eswap0,Eswap1); 146 ll=out[0]; l2c(ll,b); 147 ll=out[1]; l2c(ll,b);
|
/external/openssl/crypto/dh/ |
dhtest.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 104 BIO *out; local 116 out=BIO_new(BIO_s_file()); 117 if (out == NULL) EXIT(1); 118 BIO_set_fp(out,stdout,BIO_NOCLOSE); 120 BN_GENCB_set(&_cb, &cb, out); 127 BIO_puts(out, "p value is not prime\n"); 129 BIO_puts(out, "p value is not a safe prime\n"); 131 BIO_puts(out, "unable to check the generator value\n") [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
ElementPolicy.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 71 ElementPolicy out = null; field in class:ElementPolicy.Util.PolicyJoiner 75 out = p; 76 } else if (out != REJECT_ALL_ELEMENT_POLICY) { 83 if (out == null || out == IDENTITY_ELEMENT_POLICY) { 84 out = p; 86 out = new JoinedElementPolicy(out, p); 98 return pu.out != null ? pu.out : IDENTITY_ELEMENT_POLICY [all...] |
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
EncodingTest.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 218 StringBuilder out = new StringBuilder(); local 219 Encoding.encodeHtmlOnto(cps.toString(), out); local 223 out.toString());
|
HtmlChangeReporterTest.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 45 StringBuilder out = new StringBuilder(); local 48 out, Handler.DO_NOTHING); 75 assertEquals("Hello,<b>World</b>!", out.toString());
|
/external/proguard/src/proguard/ |
GPL.java | 27 * This class checks and prints out information about the GPL. 34 * Prints out a note about the GPL if ProGuard is linked against unknown 39 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 40 new Exception().printStackTrace(new PrintStream(out)); 43 new ByteArrayInputStream(out.toByteArray()))); 51 System.out.println("ProGuard is released under the GNU General Public License. You therefore"); 52 System.out.println("must ensure that programs that link to it ("+uniquePackageNames+"...)"); 53 System.out.println("carry the GNU General Public License as well. Alternatively, you can"); 54 System.out.println("apply for an exception with the author of ProGuard."); 198 System.out.println(uniquePackageNames) [all...] |
/external/skia/experimental/PdfViewer/src/ |
SkPdfDiffEncoder.cpp | 114 SkString out; local 118 out.appendf("/tmp/log_step_by_step/step-%i-%s.png", gOpCounter, gLastKeyword.c_str()); 120 SkImageEncoder::EncodeFile(out.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
|
/external/skia/tests/ |
ColorFilterTest.cpp | 97 SkPMColor in, out; local 103 lf->filterSpan(&in, 1, &out); 104 REPORTER_ASSERT(reporter, SkGetPackedA32(out) == i); 105 REPORTER_ASSERT(reporter, SkGetPackedR32(out) == 0); 106 REPORTER_ASSERT(reporter, SkGetPackedG32(out) == 0); 107 REPORTER_ASSERT(reporter, SkGetPackedB32(out) == 0); 113 lf->filterSpan(&in, 1, &out); 114 REPORTER_ASSERT(reporter, out == SK_ColorTRANSPARENT); 120 lf->filterSpan(&in, 1, &out); 121 REPORTER_ASSERT(reporter, out != in) [all...] |
/external/smack/src/org/jivesoftware/smack/compression/ |
JzlibInputOutputStream.java | 69 Object out = constructor.newInstance(outputStream, 9); local 72 method.invoke(out, 2); 73 return (OutputStream) out;
|
/external/smack/src/org/xbill/DNS/ |
ARecord.java | 86 rrToWire(DNSOutput out, Compression c, boolean canonical) { 87 out.writeU32(((long)addr) & 0xFFFFFFFFL);
|
/external/smali/util/src/main/java/org/jf/util/ |
TwoColumnOutput.java | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 47 private final Writer out; field in class:TwoColumnOutput 59 * @param out non-null; writer to send final output to 64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth, 75 this.out = out; 84 * @param out non-null; stream to send final output to 89 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 91 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); 123 out.write(leftLine) [all...] |
/external/valgrind/main/memcheck/tests/ |
origin6-fp.c | 38 double** out; local 40 out = alloc_square_array(nArr - 2); 41 assert(out); 47 out[i-1][j-1] = s / 9.0; 50 return out; 66 void setup_arr ( /*OUT*/double** arr, int nArr )
|
/external/wpa_supplicant_8/src/eap_common/ |
eap_fast_common.c | 100 u8 *rnd = NULL, *out; local 107 out = os_malloc(block_size + len); 108 if (out == NULL) 111 if (tls_connection_prf(ssl_ctx, conn, label, 1, out, block_size + len) 113 os_memmove(out, out + block_size, len); 114 return out; 132 keys.server_random_len, out, block_size + len)) 135 os_memmove(out, out + block_size, len) [all...] |
/frameworks/av/media/libeffects/testlibs/ |
EffectsMath.c | 114 int32_t out = 0; local 123 out = 0x4000; 133 tmp = (out << i) + (1 << ((i - 1)*2)); 136 out += 1 << (i-1); 141 return out;
|
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 47 uint8_t *out = buffer->data(); local 76 out[j++] = (accum >> 16); 78 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; } 79 if (j < outLen) { out[j++] = accum & 0xff; } 103 const void *_data, size_t size, AString *out) { 104 out->clear(); 114 out->append(encode6Bit(x1 >> 2)); 115 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 116 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f)); 117 out->append(encode6Bit(x3 & 0x3f)) [all...] |
/frameworks/base/core/java/android/ddm/ |
DdmHandleAppName.java | 93 ByteBuffer out = ByteBuffer.allocate( local 97 out.order(ChunkHandler.CHUNK_ORDER); 98 out.putInt(appName.length()); 99 putString(out, appName); 100 out.putInt(userId); 102 Chunk chunk = new Chunk(CHUNK_APNM, out);
|
/frameworks/base/core/java/android/net/ |
ScoredNetwork.java | 54 * the scorer may choose to issue an out-of-band update at any time. 76 public void writeToParcel(Parcel out, int flags) { 77 networkKey.writeToParcel(out, flags); 79 out.writeByte((byte) 1); 80 rssiCurve.writeToParcel(out, flags); 82 out.writeByte((byte) 0);
|
/frameworks/base/media/mca/filterpacks/native/base/ |
vec_types.h | 33 // out of boundary not checked 37 // out of boundary not checked 60 Vec<T, dim> out; local 62 out.data[i] = x.data[i] + y.data[i]; 63 return out; 68 Vec<T, dim> out; local 70 out.data[i] = x.data[i] - y.data[i]; 71 return out; 76 Vec<T, dim> out; local 78 out.data[i] = x.data[i] * y.data[i] 84 Vec<T, dim> out; local 92 T out = 0; local 100 Vec<T, dim> out; local 108 Vec<T, dim> out; local 116 Vec<T, dim> out; local [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
LaunchWarningWindow.java | 41 TypedValue out = new TypedValue(); local 42 getContext().getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true); 43 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, out.resourceId);
|
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 90 SectionMap::reference out = script.sectionMap().back(); local 92 if (!isLhsDot && out->dotAssignments().empty()) { 100 out->dotAssignments().push_back(assign); 103 if (!out->dotAssignments().empty()) { 104 Assignment& prevDotAssign = out->dotAssignments().back(); 121 out->dotAssignments().push_back(*this);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 61 uchar *out = (uchar *)p->out; local 72 out[0] = tr[in[0]]; 73 out[1] = tg[in[1]]; 74 out[2] = tb[in[2]]; 75 out[3] = ta[in[3]]; 77 out += 4;
|
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
HelloComputeNDK.java | 34 native void nativeMono(String cacheDir, int X, int Y, Bitmap in, Bitmap out); 48 ImageView out = (ImageView) findViewById(R.id.displayout); local 49 out.setImageBitmap(mBitmapOut);
|
/libcore/dex/src/main/java/com/android/dex/ |
Leb128.java | 128 * Writes {@code value} as an unsigned integer to {@code out}, starting at 131 public static void writeUnsignedLeb128(ByteOutput out, int value) { 135 out.writeByte((byte) ((value & 0x7f) | 0x80)); 140 out.writeByte((byte) (value & 0x7f)); 144 * Writes {@code value} as a signed integer to {@code out}, starting at 147 public static void writeSignedLeb128(ByteOutput out, int value) { 156 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1GeneralizedTime.java | 74 public void encodeContent(BerOutputStream out) { 75 out.encodeGeneralizedTime(); 86 public void setEncodingContent(BerOutputStream out) { 89 String temp = sdf.format(out.content); 102 out.content = (temp + "Z").getBytes(StandardCharsets.UTF_8); 103 out.length = ((byte[]) out.content).length;
|