Searched refs:res (Results 151 - 175 of 2731) sorted by relevance

1234567891011>>

/external/dropbear/libtommath/
H A Dbn_mp_sqrt.c21 int res; local
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
36 return res;
39 if ((res = mp_init(&t2)) != MP_OKAY) {
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
53 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY) {
58 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
61 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
64 if ((res
[all...]
H A Dbn_mp_mul.c21 int res, neg; local
27 res = mp_toom_mul(a, b, c);
33 res = mp_karatsuba_mul (a, b, c);
49 res = fast_s_mp_mul_digs (a, b, c, digs);
53 res = s_mp_mul (a, b, c); /* uses s_mp_mul_digs */
55 res = MP_VAL;
60 return res;
H A Dbn_mp_reduce_2k.c22 int p, res; local
24 if ((res = mp_init(&q)) != MP_OKAY) {
25 return res;
31 if ((res = mp_div_2d(a, p, &q, a)) != MP_OKAY) {
37 if ((res = mp_mul_d(&q, d, &q)) != MP_OKAY) {
43 if ((res = s_mp_add(a, &q, a)) != MP_OKAY) {
54 return res;
H A Dbn_mp_reduce_2k_l.c25 int p, res; local
27 if ((res = mp_init(&q)) != MP_OKAY) {
28 return res;
34 if ((res = mp_div_2d(a, p, &q, a)) != MP_OKAY) {
39 if ((res = mp_mul(&q, d, &q)) != MP_OKAY) {
44 if ((res = s_mp_add(a, &q, a)) != MP_OKAY) {
55 return res;
H A Dbn_mp_gcd.c22 int k, u_lsb, v_lsb, res; local
33 if ((res = mp_init_copy (&u, a)) != MP_OKAY) {
34 return res;
37 if ((res = mp_init_copy (&v, b)) != MP_OKAY) {
51 if ((res = mp_div_2d(&u, k, &u, NULL)) != MP_OKAY) {
55 if ((res = mp_div_2d(&v, k, &v, NULL)) != MP_OKAY) {
62 if ((res = mp_div_2d(&u, u_lsb - k, &u, NULL)) != MP_OKAY) {
68 if ((res = mp_div_2d(&v, v_lsb - k, &v, NULL)) != MP_OKAY) {
81 if ((res = s_mp_sub(&v, &u, &v)) != MP_OKAY) {
86 if ((res
[all...]
/external/elfutils/libebl/
H A Debldynamictagname.c67 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL; local
69 if (res == NULL)
84 res = stdtags[tag];
87 res = "VERSYM";
97 res = valrntags[tag - DT_GNU_PRELINKED];
108 res = addrrntags[tag - DT_GNU_HASH];
118 res = suntags[tag - DT_RELACOUNT];
121 res = "AUXILIARY";
123 res = "FILTER";
128 res
[all...]
H A Deblsectionname.c69 const char *res = ebl != NULL ? ebl->section_name (section, xsection, local
72 if (res == NULL)
75 res = "UNDEF";
77 res = "ABS";
79 res = "COMMON";
81 res = "BEFORE";
83 res = "AFTER";
90 res = scnnames[idx];
94 res = buf;
112 res
[all...]
H A Deblsegmenttypename.c66 const char *res; local
68 res = ebl != NULL ? ebl->segment_type_name (segment, buf, len) : NULL;
69 if (res == NULL)
86 res = ptypes[segment];
88 res = "GNU_EH_FRAME";
90 res = "GNU_STACK";
92 res = "GNU_RELRO";
94 res = "SUNWBSS";
96 res = "SUNWSTACK";
106 res
[all...]
H A Deblsymbolbindingname.c66 const char *res; local
68 res = ebl != NULL ? ebl->symbol_type_name (binding, buf, len) : NULL;
69 if (res == NULL)
78 res = stb_names[binding];
88 res = buf;
92 return res;
H A Deblsymboltypename.c66 const char *res; local
68 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
69 if (res == NULL)
84 res = stt_names[symbol];
94 res = buf;
98 return res;
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dprofilew.cpp48 LONG res = RegCreateKeyEx(HKEY_LOCAL_MACHINE, local
58 if(res != ERROR_SUCCESS)
75 LONG res = RegQueryValueEx(hKey, key, 0L, NULL, (BYTE *)&val, &size); local
77 if(res != ERROR_SUCCESS)
89 LONG res = RegSetValueEx(hKey, key, 0L, REG_DWORD, (const BYTE *)&val, size); local
90 return (res == ERROR_SUCCESS);
95 LONG res = RegQueryValueEx(hKey, key, 0L, NULL, (BYTE *)string, (DWORD *)&size); local
96 return (res == ERROR_SUCCESS);
102 LONG res = RegSetValueEx(hKey, key, 0L, REG_SZ, (const BYTE *)string, size); local
103 return (res
109 LONG res = ERROR_SUCCESS; local
133 LONG res = ERROR_SUCCESS; local
[all...]
/external/eigen/Eigen/src/Geometry/
H A DEulerAngles.h38 Matrix<Scalar,3,1> res; local
50 res[1] = internal::atan2(s, coeff(i,i));
53 res[0] = internal::atan2(coeff(j,i), coeff(k,i));
54 res[2] = internal::atan2(coeff(i,j),-coeff(i,k));
58 res[0] = Scalar(0);
59 res[2] = (coeff(i,i)>0?1:-1)*internal::atan2(-coeff(k,j), coeff(j,j));
65 res[1] = internal::atan2(-coeff(i,k), c);
68 res[0] = internal::atan2(coeff(j,k), coeff(k,k));
69 res[2] = internal::atan2(coeff(i,j), coeff(i,i));
73 res[
[all...]
/external/bison/src/
H A Dlocation.h63 int res = strcmp (a.file, b.file); local
64 if (!res)
65 res = a.line - b.line;
66 if (!res)
67 res = a.column - b.column;
68 return res;
117 int res = boundary_cmp (a.start, b.start); local
118 if (!res)
119 res = boundary_cmp (a.end, b.end);
120 return res;
[all...]
/external/clang/test/CodeGen/
H A Dbitfield-2.c40 unsigned long long res = 0; local
41 res ^= g0.f0;
42 res ^= f0_load(&g0) ^ f0_store(&g0) ^ f0_reload(&g0);
43 res ^= g0.f0;
44 return res;
86 unsigned long long res = 0; local
87 res ^= g1.f0 ^ g1.f1;
88 res ^= f1_load(&g1) ^ f1_store(&g1) ^ f1_reload(&g1);
89 res ^= g1.f0 ^ g1.f1;
90 return res;
128 unsigned long long res = 0; local
164 unsigned long long res = 0; local
198 unsigned long long res = 0; local
230 unsigned long long res = 0; local
260 unsigned long long res = 0; local
318 unsigned long long res = 0; local
[all...]
/external/valgrind/main/none/tests/x86/
H A Dlzcnt32.c8 void do_lzcnt32 ( /*OUT*/UInt* flags, /*OUT*/UInt* res, UInt arg ) argument
20 *res = block[1];
25 void do_lzcnt16 ( /*OUT*/UInt* flags, /*OUT*/UInt* res, UInt arg ) argument
37 *res = block[1];
47 UInt res; local
49 do_lzcnt32(&flags, &res, w);
50 printf("lzcntl %08x -> %08x %04x\n", w, res, flags);
57 UInt res; local
59 do_lzcnt16(&flags, &res, w);
60 printf("lzcntw %08x -> %08x %04x\n", w, res, flag
[all...]
/external/chromium_org/ui/views/corewm/
H A Dshadow.cc137 ResourceBundle& res = ResourceBundle::GetSharedInstance(); local
141 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_TOP_LEFT),
142 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_TOP),
143 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_TOP_RIGHT),
144 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_LEFT),
146 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_RIGHT),
147 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_BOTTOM_LEFT),
148 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_BOTTOM),
149 &res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE_BOTTOM_RIGHT));
153 &res
[all...]
/external/lzma/CPP/Windows/
H A DRegistry.cpp26 LONG res = RegCreateKeyEx(parentKey, keyName, 0, keyClass, local
30 if (res == ERROR_SUCCESS)
32 res = Close();
35 return res;
42 LONG res = RegOpenKeyEx(parentKey, keyName, 0, accessMask, &key); local
43 if (res == ERROR_SUCCESS)
45 res = Close();
46 MYASSERT(res == ERROR_SUCCESS);
49 return res;
54 LONG res local
74 LONG res = key.Open(_object, subKeyName, KEY_READ | KEY_WRITE); local
174 LONG res = key.Create(parentKey, keyName); local
184 LONG res = key.Create(_object, keyName); local
194 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, local
204 LONG res = QueryValue(name, uintValue); local
212 LONG res = QueryValue(name, newVal); local
221 LONG res = QueryValue(name, newVal); local
231 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, (LPBYTE)value, (DWORD *)&count); local
241 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, NULL, (DWORD *)&currentSize); local
254 LONG res = RegQueryValueExW(_object, name, NULL, &type, (LPBYTE)value, (DWORD *)&count); local
264 LONG res; local
286 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, (LPBYTE)value, (DWORD *)&count); local
296 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, NULL, (DWORD *)&dataSize); local
347 LONG res = QueryValue(valueName, buffer, dataSize); local
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc123 double res = REAL(frexp)(x, exp);
125 return res;
137 float res = REAL(frexpf)(x, exp);
139 return res;
145 long double res = REAL(frexpl)(x, exp);
147 return res;
182 SSIZE_T res = REAL(read)(fd, ptr, count);
183 if (res > 0)
184 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ptr, res);
185 if (res >
[all...]
H A Dsanitizer_common_syscalls.inc78 POST_SYSCALL(recvmsg)(long res, int sockfd, struct sanitizer_kernel_msghdr *msg,
80 if (res > 0)
89 POST_SYSCALL(rt_sigpending)(long res, void *p, unsigned long s) {
90 if (res == 0) {
97 POST_SYSCALL(getdents)(long res, int fd, void *dirp, int count) {
98 if (res > 0) {
99 POST_WRITE(dirp, res);
107 POST_SYSCALL(getdents64)(long res, int fd, void *dirp, int count) {
108 if (res > 0) {
109 POST_WRITE(dirp, res);
[all...]
/external/chromium_org/chrome/test/functional/ispy/server/
H A Dmain_view_handler.py99 res = {}
100 res['expectation'] = path.lstrip('/').split('/')[2]
101 res['test_run'] = test_run
102 res['info'] = json.loads(ispy.cloud_bucket.DownloadFile(
103 ispy_utils.GetFailurePath(res['test_run'], res['expectation'],
106 res['expectation'], 'expected.png')
107 diff = ispy_utils.GetFailurePath(test_run, res['expectation'], 'diff.png')
108 res['percent_different'] = res['inf
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Devergreen_compute_internal.c58 struct evergreen_compute_resource* res,
61 res->cs[res->cs_end++] = value;
70 struct evergreen_compute_resource* res,
77 evergreen_emit_raw_reg_set(res, index, size / 4);
80 res->cs[res->cs_end++] = array[i / 4];
85 struct evergreen_compute_resource* res,
89 evergreen_emit_raw_reg_set(res, index, 1);
90 res
57 evergreen_emit_raw_value( struct evergreen_compute_resource* res, unsigned value) argument
69 evergreen_mult_reg_set_( struct evergreen_compute_resource* res, int index, u32* array, int size) argument
84 evergreen_reg_set( struct evergreen_compute_resource* res, unsigned index, unsigned value) argument
113 struct evergreen_compute_resource* res = &pipe->resources[index]; local
123 evergreen_emit_raw_reg_set( struct evergreen_compute_resource* res, unsigned index, int num) argument
167 evergreen_emit_force_reloc(struct evergreen_compute_resource* res) argument
270 struct r600_resource *res; local
329 struct evergreen_compute_resource* res = local
345 struct evergreen_compute_resource* res = local
363 struct evergreen_compute_resource* res = local
390 struct evergreen_compute_resource* res = local
498 struct evergreen_compute_resource* res = local
576 struct evergreen_compute_resource* res = local
611 struct evergreen_compute_resource* res = local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute_internal.c58 struct evergreen_compute_resource* res,
61 res->cs[res->cs_end++] = value;
70 struct evergreen_compute_resource* res,
77 evergreen_emit_raw_reg_set(res, index, size / 4);
80 res->cs[res->cs_end++] = array[i / 4];
85 struct evergreen_compute_resource* res,
89 evergreen_emit_raw_reg_set(res, index, 1);
90 res
57 evergreen_emit_raw_value( struct evergreen_compute_resource* res, unsigned value) argument
69 evergreen_mult_reg_set_( struct evergreen_compute_resource* res, int index, u32* array, int size) argument
84 evergreen_reg_set( struct evergreen_compute_resource* res, unsigned index, unsigned value) argument
113 struct evergreen_compute_resource* res = &pipe->resources[index]; local
123 evergreen_emit_raw_reg_set( struct evergreen_compute_resource* res, unsigned index, int num) argument
167 evergreen_emit_force_reloc(struct evergreen_compute_resource* res) argument
270 struct r600_resource *res; local
329 struct evergreen_compute_resource* res = local
345 struct evergreen_compute_resource* res = local
363 struct evergreen_compute_resource* res = local
390 struct evergreen_compute_resource* res = local
498 struct evergreen_compute_resource* res = local
576 struct evergreen_compute_resource* res = local
611 struct evergreen_compute_resource* res = local
[all...]
/external/chromium_org/base/process/
H A Dprocess_metrics.cc31 scoped_ptr<DictionaryValue> res(new DictionaryValue());
33 res->SetInteger("committed_memory", static_cast<int>(committed_memory_));
35 res->Set("meminfo", memory_info_.ToValue().release());
36 res->Set("diskinfo", disk_info_.ToValue().release());
39 res->Set("swapinfo", swap_info_.ToValue().release());
42 return res.PassAs<Value>();
/external/jmonkeyengine/engine/src/test/jme3test/bounding/
H A DTestRayCollision.java49 CollisionResults res = new CollisionResults();
50 bbox.collideWith(r, res);
55 System.out.println("Num collisions: "+res.size());
56 for (int i = 0; i < res.size(); i++){
58 float dist = res.getCollision(i).getDistance();
59 Vector3f pt = res.getCollision(i).getContactPoint();
/external/v8/src/mips/
H A Dcpu-mips.cc73 int res; local
75 res = syscall(__NR_cacheflush, start, size, ICACHE);
76 if (res) {
86 int res; local
88 res = syscall(__NR_cacheflush, start, size, ICACHE);
89 if (res) {

Completed in 549 milliseconds

1234567891011>>