/device/linaro/hikey/audio/ |
audio_hw.c | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 49 /* number of base blocks in a short period (low latency) */ 96 /* default to low power: will be corrected in out_write if necessary before first write to 492 /* TODO The retry mechanism isn't implemented in AudioPolicyManager/AudioFlinger. */ 591 struct stub_stream_in *in; local 594 in = (struct stub_stream_in *)calloc(1, sizeof(struct stub_stream_in)); 595 if (!in) 598 in->stream.common.get_sample_rate = in_get_sample_rate; 599 in->stream.common.set_sample_rate = in_set_sample_rate [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
URLClassLoaderTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 137 assertEquals("Returned incorrect resource/or in wrong order", 484 InputStream in = this.getClass() local 486 assertNotNull(in); 487 in = this.getClass().getResourceAsStream("test%25.properties"); 488 assertNull(in);
|
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/ |
BsPatchTest.java | 4 // you may not use this file except in compliance with the License. 9 // Unless required by applicable law or agreed to in writing, software 48 * run-time, potentially from a JAR, and therefore a copy must be made in the filesystem to access 79 // In this case the "patch stream" is just a stream of addends that transformBytes(...) will 321 // ExpectedFinalNewDataBytesWritten_Negative case is impossible in code, so no need to test 339 Assert.fail("Read patch that moves past EOF in new file"); 363 Assert.fail("Read patch with that moves to a negative offset in old file"); 387 Assert.fail("Read patch with that moves past EOF in old file"); 626 ByteArrayInputStream in = new ByteArrayInputStream(new byte[dataLength]); local 629 BsPatch.pipe(in, new ByteArrayOutputStream(), new byte[dataLength], dataLength + 1) 639 ByteArrayInputStream in = new ByteArrayInputStream(new byte[dataLength]); local 703 InputStream in = getClass().getResourceAsStream("testdata\/" + testDataFileName); local [all...] |
/external/clang/test/Sema/ |
designated-initializers.c | 21 [3] 2, // expected-warning{{use of GNU 'missing =' extension in designator}} 33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}} 43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}} 73 [2].top_left = { { .x = 1.1 } }, // expected-error{{designator in initializer for scalar type}} 98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { member in struct:outer 99 [0].in.x = 2, &zz[0].in.x, &zz[0].in, 100 0, &anint, &zz[1].in, 101 [3].in = { .y = &anint, .x = 17 } [all...] |
/external/curl/packages/OS400/ |
os400sys.c | 10 * This software is licensed as described in the file COPYING, which 58 #include <netinet/in.h> 184 /* Get the buffer for the given local key in the current thread, and 213 /* Define the buffer system, get the buffer for the given local key in 670 /* No need to convert code: text results are already in ASCII. */ 753 /* Convert `buf' in place, from EBCDIC to ASCII. 784 gss_buffer_desc in; local 789 memcpy((char *) &in, (char *) in_name, sizeof in); 790 i = in.length 848 gss_buffer_desc in; local [all...] |
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
vktShaderPackingFunctionTests.cpp | 10 * you may not use this file except in compliance with the License. 15 * Unless required by applicable law or agreed to in writing, software 191 // Random values, mostly in range. 212 const void* in = &inputs[0]; local 215 m_executor->execute(m_context, (int)inputs.size(), &in, &out); 239 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx 319 const void* in = &inputs[0]; local 322 m_executor->execute(m_context, (int)inputs.size(), &in, &out); 347 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n" 416 // Random values, mostly in range 437 const void* in = &inputs[0]; local 544 const void* in = &inputs[0]; local 669 const void* in = &inputs[0]; local 788 const void* in = &inputs[0]; local 916 const void* in = &inputs[0]; local 1029 const void* in = &inputs[0]; local 1161 const void* in = &inputs[0]; local 1274 const void* in = &inputs[0]; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-antlr.jar | |
/external/elfutils/libdwfl/ |
link_map.c | 18 or both in parallel, as here. 20 elfutils is distributed in the hope that it will be useful, but 49 data, because note payloads in a core file are not aligned. */ 77 data, because note payloads in a core file are not aligned. */ 234 /* Report a module for each struct link_map in the linked list at r_map 235 in the struct r_debug at R_DEBUG_VADDR. For r_debug_info description 236 see dwfl_link_map_report in libdwflP.h. If R_DEBUG_INFO is not NULL then no 237 modules get added to DWFL, caller has to add them from filled in 320 /* There can't be more elements in the link_map list than there are 323 there must be a loop in the pointers due to link_map clobberation. * 790 Elf_Data in = local 952 Elf_Data in = local [all...] |
/external/guava/guava/src/com/google/common/io/ |
ByteStreams.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 109 * @param in the input stream to read from 113 public static byte[] toByteArray(InputStream in) throws IOException { 115 copy(in, out); 126 InputStream in, int expectedSize) throws IOException { 132 int read = in.read(bytes, off, remaining); 142 int b = in.read(); 150 copy(in, out); 362 * returned in the byte array may not be exactly what was written via calls t [all...] |
/external/guice/core/test/com/google/inject/ |
BinderTestSuite.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 261 sbb.in(Scopes.SINGLETON); 270 sbb.in(Singleton.class); 279 sbb.in(TwoAtATimeScoped.class); 288 sbb.in(new TwoAtATimeScope()); 351 name(name + " in " + scoper);
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
IslamicCalendar.java | 22 * is used as the civil calendar in most of the Arab world and the 32 * earlier in the corresponding Gregorian year. 35 * at sunset. However, in order to keep the time fields in this class 40 * There are three main variants of the Islamic calendar in existence. The first 43 * every 30 years. This calendar is easily calculated and thus predictable in 44 * advance, so it is used as the civil calendar in a number of Arab countries. 51 * observations are made, seasonal variations in the time of sunset, the 53 * site. This makes it impossible to calculate in advance, and it causes the 54 * start of a month in the religious calendar to differ from the civil calenda [all...] |
SimpleTimeZone.java | 23 * example, if Daylight Savings Time starts or ends at the last Sunday in a month, use 31 * @hide Only a subset of ICU is exposed in Android 78 * By default, this constructor specifies day-of-week-in-month rules. That 80 * indicates the first Sunday in the startMonth. A startDay of -1 likewise 108 * day-of-week-in-month. Please see the member 112 * @param startTime The daylight savings starting time in local wall 113 * time, which is standard time in this case. Please see the 117 * @param endDay The daylight savings ending day-of-week-in-month. 121 * @param endTime The daylight savings ending time in local wall time, 122 * which is daylight time in this case. Please see th [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
IslamicCalendar.java | 21 * is used as the civil calendar in most of the Arab world and the 31 * earlier in the corresponding Gregorian year. 34 * at sunset. However, in order to keep the time fields in this class 39 * There are three main variants of the Islamic calendar in existence. The first 42 * every 30 years. This calendar is easily calculated and thus predictable in 43 * advance, so it is used as the civil calendar in a number of Arab countries. 50 * observations are made, seasonal variations in the time of sunset, the 52 * site. This makes it impossible to calculate in advance, and it causes the 53 * start of a month in the religious calendar to differ from the civil calenda [all...] |
SimpleTimeZone.java | 22 * example, if Daylight Savings Time starts or ends at the last Sunday in a month, use 81 * By default, this constructor specifies day-of-week-in-month rules. That 83 * indicates the first Sunday in the startMonth. A startDay of -1 likewise 111 * day-of-week-in-month. Please see the member 115 * @param startTime The daylight savings starting time in local wall 116 * time, which is standard time in this case. Please see the 120 * @param endDay The daylight savings ending day-of-week-in-month. 124 * @param endTime The daylight savings ending time in local wall time, 125 * which is daylight time in this case. Please see the 155 * day-of-week-in-month. Please see the membe [all...] |
/external/javassist/src/main/javassist/bytecode/stackmap/ |
MapMaker.java | 6 * 1.1 (the "License"); you may not use this file except in compliance with 337 int in = cur.incoming; local 338 if (in > 1) 340 else if (in < 1)
|
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
ProxyServlet.java | 78 * <li>timeout - the period in ms the client will wait for a response from the proxied server 79 * <li>idleTimeout - the period in ms a connection to proxied server can be idle for before it is closed 171 * Create and return a logger based on the ServletConfig for use in the 419 final InputStream in = request.getInputStream(); local 635 exchange.setRequestContentSource(in); 693 InputStream in = request.getInputStream(); local 704 IO.copy(in,socket.getOutputStream()); 745 * Extension point for subclasses to customize the Continuation after it's initial creation in the service method. Useful for setting timeouts etc. The
|
/external/jsoncpp/src/lib_json/ |
json_reader.cpp | 3 // recognized in your jurisdiction. 52 static inline bool in(Reader::Char c, function in namespace:Json 60 static inline bool in(Reader::Char c, function in namespace:Json 138 // in doc 388 !in(*current_, '.', 'e', 'E', '+', '-')) 449 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); 481 // Accept Comment after last item in the array. 490 "Missing ',' or ']' in array declaration", token, tokenArrayEnd); 511 isDouble = isDouble || in(*inspect, '.', 'e', 'E', '+') || 538 // c) it's small enough to fit in that rounding delta, we're okay [all...] |
/external/kernel-headers/original/uapi/rdma/ |
ib_user_cm.h | 8 * COPYING in the main directory of this source tree, or the 11 * Redistribution and use in source and binary forms, with or 19 * - Redistributions in binary form must reproduce the above 21 * disclaimer in the documentation and/or other materials 27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 70 __u16 in; member in struct:ib_ucm_cmd_hdr 269 /* ari in ib_ucm_event_get info field. * [all...] |
/external/kernel-headers/original/uapi/sound/ |
hdspm.h | 13 * This program is distributed in the hope that it will be useful, 84 * obtained via SNDRV_HDSPM_IOCTL_GET_LTC or in the 194 /* MADI mixer: 64inputs+64playback in 64outputs = 8192 => *4Byte = 198 /* organisation is 64 channelfader in a continuous memory block */ 203 Ins to Outs mixer[out].in[in], Outstreams to Outs mixer[out].pb[pb] */ 208 unsigned int in[HDSPM_MIXER_CHANNELS]; member in struct:hdspm_channelfader
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/ |
btCollisionWorldImporter.cpp | 6 In no event will the authors be held liable for any damages arising from the use of this software. 11 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 772 //create a new btStridingMeshInterfaceData that is an exact copy of shapedata and store it in the WorldImporter 804 ///the m_3indices8 was not initialized in some Bullet versions, this can cause crashes at loading time 1006 btTriangleIndexVertexArray* in = new btTriangleIndexVertexArray(); local 1007 m_allocatedTriangleIndexArrays.push_back(in); 1008 return in; [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
PixmapIO.java | 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
45 * suffix. Throws a GdxRuntimeException in case the Pixmap couldn't be written to the file.
52 * {@link PixmapIO#writeCIM(FileHandle, Pixmap)} method. Throws a GdxRuntimeException in case the file couldn't be read.
120 DataInputStream in = null;
local 124 in = new DataInputStream(new InflaterInputStream(new BufferedInputStream(file.read())));
125 int width = in.readInt();
126 int height = in.readInt();
127 Format format = Format.fromGdx2DPixmapFormat(in.readInt());
136 while ((readBytes = in.read(readBuffer)) > 0) { [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/input/ |
RemoteInput.java | 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 * instance in Gdx.input. That's it.
39 * On your Android device you can use the gdx-remote application available on the Google Code page as an APK or in SVN
240 DataInputStream in = new DataInputStream(socket.getInputStream());
local 241 multiTouch = in.readBoolean();
243 int event = in.readInt();
248 accel[0] = in.readFloat();
249 accel[1] = in.readFloat();
250 accel[2] = in.readFloat(); [all...] |
/external/libopus/src/ |
opus_demo.c | 5 Redistribution and use in source and binary forms, with or without 12 - Redistributions in binary form must reproduce the above copyright 13 notice, this list of conditions and the following disclaimer in the 19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 24 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 59 fprintf(stderr, "-framesize <2.5|5|10|20|40|60> : frame size in ms; default: 20 \n" ); 60 fprintf(stderr, "-max_payload <bytes> : maximum payload size in bytes, default: 1024\n" ); 65 fprintf(stderr, "-loss <perc> : simulate packet loss, in percent (0-100); default: 0\n" ); 243 short *in, *out local [all...] |
/external/libvncserver/libvncserver/ |
main.c | 34 #include <netinet/in.h> 280 * modifiedRegion. The idea: in this case it could be 310 * n.b. (dx, dy) is the vector pointing in the direction the 362 char *in,*out; local 369 in = screen->frameBuffer+(rect.x1-dx)*bpp+(rect.y1-dy)*rowstride; 371 for(j=rect.y1;j<rect.y2;j++,out+=rowstride,in+=rowstride) 372 memmove(out,in,widthInBytes); 375 in += rowstride*(rect.y2-rect.y1-1); 376 for(j=rect.y2-1;j>=rect.y1;j--,out-=rowstride,in-=rowstride) 377 memmove(out,in,widthInBytes) [all...] |
/external/libvpx/libvpx/test/ |
convolve_test.cc | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 384 /* Set up guard blocks for an inner block centered in the outer block */ 569 uint8_t* const in = input(); local 573 UUT_->copy_(in, kInputStride, out, kOutputStride, NULL, 0, NULL, 0, 581 lookup(in, y * kInputStride + x)) 586 uint8_t* const in = input() local 606 uint8_t* const in = input(); local 624 uint8_t* const in = input(); local 642 uint8_t* const in = input(); local 686 uint8_t* const in = input(); local 748 uint8_t* const in = input(); local 830 uint8_t *const in = input(); local 932 uint8_t* const in = input(); local [all...] |