HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1 - 25 of 3847) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/src/
tool_cb_rea.c 10 * This software is licensed as described in the file COPYING, which
40 struct InStruct *in = userdata; local
42 rc = read(in->fd, buffer, sz*nmemb);
46 in->config->readbusy = TRUE;
52 in->config->readbusy = FALSE;
  /external/libvorbis/doc/
a2-encapsulation-rtp.tex 4 \section{Vorbis encapsulation in RTP} \label{vorbis:over:rtp}
9 Audio''} for description of how to embed Vorbis audio in an RTP stream.
  /external/syslinux/com32/hdt/
hdt-dump-pxe.c 7 * files (the "Software"), to deal in the Software without
15 * be included in all copies or substantial portions of the Software.
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
32 #include <netinet/in.h>
35 struct in_addr in; local
68 in.s_addr = hardware->pxe.dhcpdata.cip;
69 add_s("pxe.client_ip", inet_ntoa(in));
    [all...]
  /external/syslinux/com32/lib/syslinux/
initramfs.c 7 * files (the "Software"), to deal in the Software without
15 * be included in all copies or substantial portions of the Software.
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
52 struct initramfs *in; local
61 in = malloc(sizeof(*in));
62 if (!in)
    [all...]
  /external/valgrind/none/tests/mips32/
test_fcsr.c 8 unsigned long long in [] = {0x405EE0A3D70A3D71ULL, 0x3FF0000000000000ULL}; local
22 : "r" (in), "r" (out)
  /external/libcxx/benchmarks/
algorithms.bench.cpp 13 const auto in = gen(st.range(0)); local
17 C = in;
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 15 u8 in[64]; member in struct:MD5Context
  /system/media/audio_utils/tests/
limiter_tests.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
32 float in = (float) ((double) i * 0.01); local
33 float out = limiter(in);
34 printf("%g,%g\n", in, out);
36 out = limiter(-in);
37 printf("%g,%g\n", -in, out);
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseInputStreamTest.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
29 AutoCloseInputStream in = new AutoCloseInputStream(pf); local
30 assertEquals(0, in.read());
32 in.close();
35 in.read();