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

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_addresses.c 60 const fdt32_t *ac; local
64 ac = fdt_getprop(fdt, nodeoffset, "#address-cells", &len);
65 if (!ac)
68 if (len != sizeof(*ac))
71 val = fdt32_to_cpu(*ac);
  /external/compiler-rt/lib/builtins/
multc3.c 23 long double ac = a * c; local
28 __real__ z = ac - bd;
50 if (!recalc && (crt_isinf(ac) || crt_isinf(bd) ||
  /external/dtc/libfdt/
fdt_addresses.c 60 const fdt32_t *ac; local
64 ac = fdt_getprop(fdt, nodeoffset, "#address-cells", &len);
65 if (!ac)
68 if (len != sizeof(*ac))
71 val = fdt32_to_cpu(*ac);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractCollectionTest.java 32 AbstractCollection<Object> ac = new AbstractCollection<Object>() { local
48 ac.add(null);
58 AbstractCollection<String> ac = new AbstractCollection<String>() { local
79 assertTrue(ac.addAll(fixtures));
87 AbstractCollection<String> ac = new AbstractCollection<String>() { local
108 assertTrue(ac.containsAll(fixtures));
116 AbstractCollection<Object> ac = new AbstractCollection<Object>() { local
129 assertTrue(ac.isEmpty());
138 AbstractCollection<String> ac = new AbstractCollection<String>() { local
168 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2")))
181 AbstractCollection<String> ac = new AbstractCollection<String>() { local
219 AbstractCollection<String> ac = new AbstractCollection<String>() { local
260 AbstractCollection<String> ac = new AbstractCollection<String>() { local
    [all...]
  /external/testng/src/test/java/test/factory/
FactoryInterleavingSampleA.java 30 public void ac() { method in class:FactoryInterleavingSampleA
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/core/lifecycle/
LifecycleTest.java 153 ActivityController<TestActivity> ac = Robolectric.buildActivity(TestActivity.class); local
154 TestActivity activity = ac.get();
156 ac.start();
158 ac.resume();
166 ac.pause();
168 ac.stop();
170 ac.destroy();
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
map_v4v6.c 90 char ac; member in union:__anon11967
  /external/curl/lib/
curl_threads.c 51 struct curl_actual_call * ac = arg; local
52 unsigned int (*func)(void *) = ac->func;
53 void *real_arg = ac->arg;
55 free(ac);
65 struct curl_actual_call *ac = malloc(sizeof(struct curl_actual_call)); local
66 if(!(ac && t))
69 ac->func = func;
70 ac->arg = arg;
72 if(pthread_create(t, NULL, curl_thread_create_thunk, ac) != 0)
79 free(ac);
    [all...]
  /external/libopus/silk/mips/
macros_mipsr1.h 37 long long ac; local
40 ac = __builtin_mips_mult(a, (opus_int32)(opus_int16)b);
41 c = __builtin_mips_extr_w(ac, 16);
52 long long ac; local
55 ac = __builtin_mips_mult(a, b);
56 c = __builtin_mips_extr_w(ac, 16);
64 long long ac; local
67 ac = __builtin_mips_mult(b, c);
68 res = __builtin_mips_extr_w(ac, 16);
  /external/llvm/test/tools/dsymutil/X86/
odr-uniquing.cpp 78 AnonC ac; local
122 // ODR: DW_AT_name{{.*}}"ac"
173 // NOODR: DW_AT_name{{.*}}"ac"
  /external/mesa3d/src/glx/apple/
apple_glx.c 131 struct apple_glx_context *ac = ptr; local
133 apple_cgl.flush_drawable(ac->context_obj);
139 struct apple_private_context *ac = ptr; local
141 (void) ac;
apple_glx_context.c 99 is_context_valid(struct apple_glx_context *ac)
106 if (ac == i) {
128 struct apple_glx_context *ac; local
134 ac = malloc(sizeof *ac);
136 if (NULL == ac) {
145 free(ac);
149 ac->context_obj = NULL;
150 ac->pixel_format_obj = NULL;
151 ac->drawable = NULL
213 struct apple_glx_context *ac = *ptr; local
287 struct apple_glx_context *ac = ptr; local
469 struct apple_glx_context *ac = ptr; local
530 struct apple_glx_context *ac; local
560 struct apple_glx_context *ac = ptr; local
614 struct apple_glx_context *ac = ptr; local
    [all...]
  /external/v8/src/
diy-fp.cc 22 uint64_t ac = a * c; local
30 uint64_t result_f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32);
  /external/compiler-rt/lib/builtins/ppc/
multc3.c 23 long double ac = __gcc_qmul(a,c); local
28 DD real = { .ld = __gcc_qsub(ac,bd) };
60 DD acDD = { .ld = ac };
  /external/e2fsprogs/lib/ext2fs/
digest_encode.c 34 int i = 0, bits = 0, ac = 0; local
38 ac += (((unsigned char) src[i]) << bits);
41 *cp++ = lookup_table[ac & 0x3f];
42 ac >>= 6;
48 *cp++ = lookup_table[ac & 0x3f];
54 int i = 0, bits = 0, ac = 0; local
62 ac += (p - lookup_table) << bits;
65 *cp++ = ac & 0xff;
66 ac >>= 8;
71 if (ac)
    [all...]
  /external/e2fsprogs/lib/support/
argv_parse.c 143 int ac, ret; local
150 ret = argv_parse(buf, &ac, &av);
155 printf("Argv_parse returned %d arguments...\n", ac);
  /frameworks/base/core/java/android/net/
NetworkAgent.java 223 AsyncChannel ac = new AsyncChannel(); local
224 ac.connected(null, this, msg.replyTo);
225 ac.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED,
228 mAsyncChannel = ac;
230 ac.sendMessage(m);
  /external/clang/test/SemaTemplate/
deduction-crash.cpp 13 struct ac struct
20 typedef ac<1,int,int>::ae ae
  /external/testng/src/test/java/test/thread/
MultiThreadedDependentSampleTest.java 21 public void ac() { method in class:MultiThreadedDependentSampleTest
  /system/extras/perfprofd/
perfprofd_cmdline.cc 81 int ac; local
83 for (ac = 1; ac < argc; ++ac) {
84 if (!strcmp(argv[ac], "-c")) {
85 if (ac >= argc-1) {
89 ConfigReader::setConfigFilePath(argv[ac+1]);
90 ++ac;
91 } else if (!strcmp(argv[ac], "-x")) {
92 if (ac >= argc-1)
    [all...]
  /external/libedit/examples/
tc1.c 181 int ac, cc, co; local
205 ac = cc = co = 0;
206 ncontinuation = tok_line(tok, li, &ac, &av, &cc, &co);
213 (void) fprintf(stderr, " > nc %d ac %d cc %d co %d\n",
214 ncontinuation, ac, cc, co);
239 for (i = 0; i < ac; i++) {
252 switch (ac) {
280 } else if (el_parse(el, ac, av) == -1) {
wtc1.c 158 int ac, cc, co, rc; local
181 ac = cc = co = 0;
182 ncontinuation = tok_wline(tok, li, &ac, &av, &cc, &co);
190 (void)fprintf(stderr, " > nc %d ac %d cc %d co %d\n",
191 ncontinuation, ac, cc, co);
201 for (i = 0; i < ac; ++i) {
212 switch(ac) {
242 } else if (el_wparse(el, ac, av) == -1) {
  /external/wpa_supplicant_8/src/ap/
wmm.c 70 /* fill in a parameter set record for each AC */
72 struct wmm_ac_parameter *ac = &wmm->ac[e]; local
76 ac->aci_aifsn = wmm_aci_aifsn(acp->aifs,
79 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax);
80 ac->txop_limit = host_to_le16(acp->txop_limit);
299 /* TODO: check the request is for an AC with ACM set, if not, refuse
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/core/instrumentation/
VisibilityLoggerMixinTest.java 116 ActivityController<TestActivity> ac = Robolectric.buildActivity(TestActivity.class); local
117 TestActivity testActivity = ac.get();
119 ac.create().start().resume();
121 ac.pause().stop().destroy();
  /prebuilts/go/darwin-x86/test/ken/
complit.go 67 test("ac[i][j]", ac[i][j]);
104 var ac = [3][]int{[]int{2201,2202,2203}, []int{2204,2205,2206}, []int{2207,2208,2209}} var

Completed in 339 milliseconds

1 2 3 4 5 6 7 8 9