HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1 - 25 of 3981) 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/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)
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionActivity.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
38 public WindowInsets onApplyWindowInsets(View v, WindowInsets in) {
39 if (in.isRound()) {
41 params.setMargins(in.getSystemWindowInsetLeft(), in.getSystemWindowInsetTop(),
42 in.getSystemWindowInsetRight(), in.getSystemWindowInsetBottom());
45 return in;
  /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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/benchmarks/
algorithms.bench.cpp 13 const auto in = gen(st.range(0)); local
17 C = in;
  /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();
  /libcore/ojluni/src/main/java/java/io/
FilterInputStream.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
50 protected volatile InputStream in; field in class:FilterInputStream
54 * by assigning the argument <code>in</code>
55 * to the field <code>this.in</code> so as
58 * @param in the underlying input stream, or <code>null</code> if
61 protected FilterInputStream(InputStream in) {
62 this.in = in;
    [all...]
FilterReader.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 protected Reader in; field in class:FilterReader
51 * @param in a Reader object providing the underlying stream.
52 * @throws NullPointerException if <code>in</code> is <code>null</code>
54 protected FilterReader(Reader in) {
55 super(in);
56 this.in = in;
    [all...]
  /cts/hostsidetests/security/securityPatch/CVE-2016-2109/
poc.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
34 BIO *in = BIO_new(BIO_s_mem()); local
35 if(in != NULL){
36 BIO_write(in, bad_bio, sizeof(bad_bio));
37 cert = d2i_X509_bio(in, NULL); // x509 should be present on all Android systems
38 BIO_free(in);
  /cts/tests/tests/media/libmediandkjni/
md5_utils.h 4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
20 * Still in the public domain.
37 UWORD32 in[16]; member in struct:MD5Context
43 void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
  /external/annotation-tools/scene-lib/src/annotations/util/
Strings.java 19 public static String escape(String in) {
21 for (int pos = 0; pos < in.length(); pos++) {
22 switch (in.charAt(pos)) {
39 out.append(in.charAt(pos));
  /external/autotest/client/deps/glbench/src/
md5.h 16 u8 in[64]; member in struct:MD5Context
  /external/guice/core/src/com/google/inject/binder/
ScopedBindingBuilder.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
33 void in(Class<? extends Annotation> scopeAnnotation); method in interface:ScopedBindingBuilder
38 void in(Scope scope); method in interface:ScopedBindingBuilder
  /external/libcxx/test/libcxx/localization/locale.categories/
__scan_keyword.pass.cpp 15 // Scans [__b, __e) until a match is found in the basic_strings range
16 // [__kb, __ke) or until it can be shown that there is no match in [__kb, __ke).
18 // or proved to not exist. A keyword may be "", in which will match anything.
19 // If one keyword is a prefix of another, and the next CharT in the input
25 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false,
48 const char* in = input; local
51 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
55 assert(in == input+1);
60 const char* in = input; local
63 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1
72 const char* in = input; local
84 const char* in = input; local
96 const char* in = input; local
108 const char* in = input; local
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
setg.pass.cpp 41 char in[] = "ABC"; local
42 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setg(in, in+1, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
xsputn.pass.cpp 37 char in[] = "123456"; local
38 assert(t.sputn(in, sizeof(in)) == 0);
39 char out[sizeof(in)] = {0};
41 assert(t.sputn(in, sizeof(in)) == sizeof(in));
42 assert(strcmp(in, out) == 0);
  /external/libmicrohttpd/src/microhttpd/
md5.h 4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
36 unsigned char in[64]; member in struct:MD5Context
  /external/libvpx/libvpx/
md5_utils.h 4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
20 * Still in the public domain.
37 UWORD32 in[16]; member in struct:MD5Context
43 void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
  /external/mesa3d/src/compiler/nir/
nir_lower_passthrough_edgeflags.c 6 * to deal in the Software without restriction, including without limitation
12 * paragraph) shall be included in all copies or substantial portions of the
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 nir_variable *in, *out; local
38 in = nir_variable_create(shader, nir_var_shader_in,
40 in->data.location = VERT_ATTRIB_EDGEFLAG;
46 def = nir_load_var(&b, in);
    [all...]
  /external/syslinux/core/lwip/src/netif/ppp/
md5.h 9 ** -- FF, GG, HH modified to add in last register done **
22 ** Digest Algorithm" in all material mentioning or referencing this **
27 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
35 ** These notices must be retained in any copies of any part of this **
47 unsigned char in[64]; /* input buffer */ member in struct:__anon37161

Completed in 805 milliseconds

1 2 3 4 5 6 7 8 91011>>