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

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/syscalls/futex/
futex_wait05.c 16 * along with this program; if not, write to the Free Software
31 struct timespec to = tst_us_to_timespec(usec); local
35 TEST(futex_wait(&futex, futex, &to, 0));
futex_wait04.c 19 * along with this program; if not, write to the Free Software
35 static struct timespec to = {.tv_sec = 0, .tv_nsec = 10000}; variable in typeref:struct:timespec
45 res = futex_wait(buf, 1, &to, 0);
futex_wait_bitset.h 16 * along with this program; if not, write to the Free Software
24 struct timespec start, to, end; local
33 to = tst_timespec_add_us(start, wait_us);
35 TEST(futex_wait_bitset(&futex, futex, &to, bitset, flags));
57 if (tst_timespec_lt(end, to)) {
64 if (tst_timespec_diff_us(end, to) > TRESHOLD_US) {
  /art/libdexfile/dex/
primitive_test.cc 10 * Unless required by applicable law or agreed to in writing, software
30 Primitive::Type to = static_cast<Primitive::Type>(i); local
31 if (Primitive::IsWidenable(from, to)) {
32 actual_to_types.push_back(to);
  /art/test/005-annotations/src/android/test/anno/
IntToString.java 11 String to(); method in interface:IntToString
  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 5 long to; member in struct:Connection_Type
2002-03-12-StructInitializer.c 9 long to; member in struct:Connection_Type
  /external/guice/core/src/com/google/inject/binder/
ConstantBindingBuilder.java 10 * Unless required by applicable law or agreed to in writing, software
20 * Binds to a constant value.
25 * Binds constant to the given value.
27 void to(String value); method in interface:ConstantBindingBuilder
30 * Binds constant to the given value.
32 void to(int value); method in interface:ConstantBindingBuilder
35 * Binds constant to the given value.
37 void to(long value); method in interface:ConstantBindingBuilder
40 * Binds constant to the given value.
42 void to(boolean value) method in interface:ConstantBindingBuilder
47 void to(double value); method in interface:ConstantBindingBuilder
52 void to(float value); method in interface:ConstantBindingBuilder
57 void to(short value); method in interface:ConstantBindingBuilder
62 void to(char value); method in interface:ConstantBindingBuilder
69 void to(byte value); method in interface:ConstantBindingBuilder
74 void to(Class<?> value); method in interface:ConstantBindingBuilder
79 <E extends Enum<E>> void to(E value); method in interface:ConstantBindingBuilder
    [all...]
LinkedBindingBuilder.java 10 * Unless required by applicable law or agreed to in writing, software
35 ScopedBindingBuilder to(Class<? extends T> implementation); method in interface:LinkedBindingBuilder
40 ScopedBindingBuilder to(TypeLiteral<? extends T> implementation); method in interface:LinkedBindingBuilder
45 ScopedBindingBuilder to(Key<? extends T> targetKey); method in interface:LinkedBindingBuilder
  /external/icu/icu4c/source/i18n/
zonemeta.h 22 const UChar *mzid; // const because it's a reference to a resource bundle string.
24 UDate to; member in struct:OlsonToMetaMappingEntry
43 * This overload method returns a persistent const UChar*, which is guranteed to persist
44 * (a pointer to a resource). If the given system tzid is not known, U_ILLEGAL_ARGUMENT_ERROR
63 * @return A reference to the result country
81 * Returns the pointer to the persistent time zone ID string, or NULL if the given tzid is not in the
87 * Returns the pointer to the persistent meta zone ID string, or NULL if the given mzid is not available.
  /packages/apps/Dialer/java/com/android/dialer/configprovider/
SharedPrefConfigProviderModule.java 10 * Unless required by applicable law or agreed to in writing, software
29 abstract ConfigProvider to(SharedPrefConfigProvider impl); method in class:SharedPrefConfigProviderModule
  /system/sepolicy/
definitions.mk 1 # Command to turn collection of policy files into a policy.conf file to be
3 define transform-policy-to-conf
16 .KATI_READONLY := transform-policy-to-conf
  /external/mesa3d/src/compiler/
Android.glsl.gen.mk 6 # Permission is hereby granted, free of charge, to any person obtaining a
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48 # Modules using libmesa_nir must set LOCAL_GENERATED_SOURCES to this
54 define local-l-or-ll-to-c-or-cp
    [all...]
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
SocketConnect.java 14 private OutputStream to; field in class:SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException {
18 this.to = to.getOutputStream();
32 to.write(buffer, 0, r);
35 to.close();
  /external/compiler-rt/test/asan/TestCases/
strcat_strict.c 14 void test1(char *to, int to_size, char *from) {
15 // One of arguments points to not allocated memory.
16 char* r = strcat(to + to_size, from);
19 void test2(char *to, int to_size, char *from) {
20 // "to" is not zero-terminated.
21 memset(to, 'z', to_size);
22 char* r = strcat(to, from);
27 char *to = (char*)malloc(to_size); local
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from)
    [all...]
strncat_strict.c 14 void test1(char *to, int to_size, char *from) {
15 // One of arguments points to not allocated memory.
16 char* r = strncat(to + to_size, from, 2);
19 void test2(char *to, int to_size, char *from) {
20 // "to" is not zero-terminated.
21 memset(to, 'z', to_size);
22 char* r = strncat(to, from, 1);
27 char *to = (char*)malloc(to_size); local
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from)
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
char16_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);
char32_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == static_cast<char32_t>(from[i]));
char32_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(static_cast<char32_t>(to[i]) == from[i]);
  /external/libvncserver/libvncclient/
listen.c 16 * along with this software; if not, write to the Free Software
45 * servers, and fork a new process to deal with each connection.
71 #ifdef LIBVNCSERVER_IPv6 /* only try that if we're IPv6-capable, otherwise we may try to bind to the same port which would make all that listening fail */
115 /* Now fork off a new process to deal with it... */
124 /* child - return to caller */
153 struct timeval to; local
156 to.tv_sec= timeout / 1000000;
157 to.tv_usec= timeout % 1000000;
174 #ifdef LIBVNCSERVER_IPv6 /* only try that if we're IPv6-capable, otherwise we may try to bind to the same port which would make all that listening fail */
    [all...]
  /external/linux-kselftest/tools/testing/selftests/futex/functional/
futex_wait_timeout.c 47 struct timespec to; local
77 to.tv_sec = 0;
78 to.tv_nsec = timeout_ns;
81 res = futex_wait(&f1, f1, &to, FUTEX_PRIVATE_FLAG);
futex_wait_wouldblock.c 45 struct timespec to = {.tv_sec = 0, .tv_nsec = timeout_ns}; local
72 res = futex_wait(&f1, f1+1, &to, FUTEX_PRIVATE_FLAG);
  /external/llvm/
llvm-device-build.mk 21 # to here.
53 ## Commands for running tblgen to compile a td file
55 define transform-device-td-to-out
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ToParser.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
33 * To Header parser.
45 * @param to String to set
47 public ToParser(String to) {
58 To to = new To(); local
    [all...]

Completed in 1084 milliseconds

1 2 3 4 5 6 7 8 91011>>