/external/selinux/policycoreutils/semodule_expand/ |
semodule_expand.c | 44 sepol_policydb_t *out, *p; local 114 fprintf(stderr, "%s: Out of memory\n", argv[0]); 120 fprintf(stderr, "%s: Out of memory\n", argv[0]); 147 if (sepol_policydb_create(&out)) { 148 fprintf(stderr, "%s: Out of memory\n", argv[0]); 154 if (sepol_expand_module(handle, p, out, verbose, check_assertions)) { 160 if (sepol_policydb_set_vers(out, policyvers)) { 176 ret = sepol_policydb_write(out, pf); 185 sepol_policydb_free(out);
|
/external/skia/bench/ |
RTreeBench.cpp | 99 SkRect out; local 100 out.fLeft = SkIntToScalar(index % GRID_WIDTH); 101 out.fTop = SkIntToScalar(index / GRID_WIDTH); 102 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3); 103 out.fBottom = out.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3); 104 return out; 107 SkRect out; local 108 out.fLeft = SkIntToScalar(index / GRID_WIDTH) 116 SkRect out; local [all...] |
/external/skia/tests/ |
PathOpsSimplifyRectThreadedTest.cpp | 22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 42 SkPath path, out; local 174 testSimplify(path, false, out, state, pathStr); 178 testSimplify(path, true, out, state, pathStr);
|
PathOpsSimplifyTrianglesThreadedTest.cpp | 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 40 SkPath path, out; local 63 testSimplify(path, false, out, state, pathStr); 69 testSimplify(path, true, out, state, pathStr);
|
/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/testng/src/test/java/test/parameters/ |
ParamInheritanceTest.java | 29 PrintStream out = System.out; local 48 System.setOut(out);
|
/external/toybox/toys/other/ |
stat.c | 62 static void out(char c, long long val) function 72 if (type == 'a') out('o', stat->st_mode&~S_IFMT); 78 } else if (type == 'b') out('u', stat->st_blocks); 79 else if (type == 'B') out('u', stat->st_blksize); 80 else if (type == 'd') out('d', stat->st_dev); 81 else if (type == 'D') out('x', stat->st_dev); 82 else if (type == 'f') out('x', stat->st_mode); 91 } else if (type == 'g') out('u', stat->st_gid); 93 else if (type == 'h') out('u', stat->st_nlink); 94 else if (type == 'i') out('u', stat->st_ino) [all...] |
/external/valgrind/memcheck/tests/ |
leak-segv-jmp.c | 149 UWord out; local 160 : /*out*/ "=r" (out) 164 return out; 173 UWord out; local 184 : /*out*/ "=r" (out) 188 return out;
|
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/webrtc/webrtc/common_audio/signal_processing/include/ |
spl_inl_armv7.h | 129 int32_t out = 0; local 131 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32)); 133 return (int16_t)out;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
filterbanks_unittest.cc | 81 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20018, 7917, local 85 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20017, 7915, local 105 EXPECT_EQ(out[i], in[i]);
|
/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 | 49 uint8_t *out = buffer->data(); local 50 if (out == NULL || buffer->size() < outLen) { 81 out[j++] = (accum >> 16); 83 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; } 84 if (j < outLen) { out[j++] = accum & 0xff; } 108 const void *_data, size_t size, AString *out) { 109 out->clear(); 119 out->append(encode6Bit(x1 >> 2)); 120 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 121 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 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 | 64 * the scorer may choose to issue an out-of-band update at any time. 79 * the scorer may choose to issue an out-of-band update at any time. 105 public void writeToParcel(Parcel out, int flags) { 106 networkKey.writeToParcel(out, flags); 108 out.writeByte((byte) 1); 109 rssiCurve.writeToParcel(out, flags); 111 out.writeByte((byte) 0); 113 out.writeByte((byte) (meteredHint ? 1 : 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/base/telecomm/java/android/telecom/ |
StatusHints.java | 116 public void writeToParcel(Parcel out, int flags) { 117 out.writeCharSequence(mLabel); 118 out.writeParcelable(mIcon, 0); 119 out.writeParcelable(mExtras, 0);
|
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 89 SectionMap::reference out = script.sectionMap().back(); local 91 if (!isLhsDot && out->dotAssignments().empty()) { 99 out->dotAssignments().push_back(assign); 102 if (!out->dotAssignments().empty()) { 103 Assignment& prevDotAssign = out->dotAssignments().back(); 123 out->dotAssignments().push_back(*this);
|
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
HelloComputeNDK.java | 33 native void nativeMono(String cacheDir, int X, int Y, Bitmap in, Bitmap out); 47 ImageView out = (ImageView) findViewById(R.id.displayout); local 48 out.setImageBitmap(mBitmapOut);
|
/hardware/bsp/intel/peripheral/libmraa/examples/java/ |
Bmp85.java | 21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 38 System.out.println(mraa.mraa.getVersion()); 50 System.out.println((new Integer(data[0])).toString()); 55 System.out.println("error"); 63 System.out.println(i2c.readWordReg((byte)0xf6)); 72 System.out.println((new Integer(d)).toString());
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
NRF24L01_transmitterSample.java | 21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 59 System.out.println("devi2 :: sending data ...."); 61 System.out.print(tx_buffer[i]); 62 System.out.println();
|
/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/test/java/libcore/java/net/ |
OldURLClassLoaderTest.java | 84 FileOutputStream out = new FileOutputStream(test1); local 85 out.write(resValues[0].getBytes()); 86 out.flush(); 87 out.close(); 93 out = new FileOutputStream(test2); 94 out.write(resValues[1].getBytes()); 95 out.flush(); 96 out.close();
|
/libcore/ojluni/src/main/java/java/net/ |
SocksSocketImpl.java | 126 throw new SocketTimeoutException("Connect timed out"); 139 BufferedOutputStream out) throws IOException { 140 return authenticate(method, in, out, 0L); 144 BufferedOutputStream out, 175 out.write(1); 176 out.write(userName.length()); 178 out.write(userName.getBytes("ISO-8859-1")); 183 out.write(password.length()); 185 out.write(password.getBytes("ISO-8859-1")); 190 out.write(0) 696 BufferedOutputStream out = new BufferedOutputStream(cmdOut, 512); local [all...] |