HomeSort by relevance Sort by last modified time
    Searched full:res (Results 26 - 50 of 6406) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/elfutils/libebl/
eblosabiname.c 30 const char *res = ebl != NULL ? ebl->osabi_name (osabi, buf, len) : NULL; local
32 if (res == NULL)
35 res = "UNIX - System V";
37 res = "HP/UX";
39 res = "NetBSD";
41 res = "Linux";
43 res = "Solaris";
45 res = "AIX";
47 res = "Irix";
49 res = "FreeBSD"
    [all...]
eblsegmenttypename.c 30 const char *res; local
32 res = ebl != NULL ? ebl->segment_type_name (segment, buf, len) : NULL;
33 if (res == NULL)
50 res = ptypes[segment];
52 res = "GNU_EH_FRAME";
54 res = "GNU_STACK";
56 res = "GNU_RELRO";
58 res = "SUNWBSS";
60 res = "SUNWSTACK";
70 res = buf
    [all...]
  /frameworks/base/docs/html/guide/tutorials/notepad/codelab/
NotepadCodeLab.zip 
  /external/srec/config/en.us/
adb_pull_system_usr_srec_liveaudio.sh 5 adb pull $TESTDIR/config/en.us/recog4_SHIP_liveaudio.res recog4_SHIP_liveaudio.res
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_common.c 103 S32 res; local
105 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U32),
108 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
117 S32 res; local
119 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, NULL, 0,
122 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
131 S32 res; local
133 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U16),
136 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
145 S32 res; local
160 S32 res; local
175 S32 res; local
189 S32 res; local
203 S32 res; local
217 S32 res; local
231 S32 res; local
248 S32 res; local
265 S32 res; local
287 S32 res; local
308 S32 res; local
330 S32 res; local
348 S32 res; local
366 S32 res; local
384 S32 res; local
403 S32 res, len; local
426 S32 res; local
446 S32 res; local
    [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
cu_common.c 103 S32 res; local
105 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U32),
108 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
117 S32 res; local
119 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, NULL, 0,
122 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
131 S32 res; local
133 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U16),
136 if(res == EOALERR_IPC_STA_ERROR_SENDING_WEXT)
145 S32 res; local
160 S32 res; local
175 S32 res; local
189 S32 res; local
203 S32 res; local
217 S32 res; local
231 S32 res; local
248 S32 res; local
265 S32 res; local
287 S32 res; local
308 S32 res; local
330 S32 res; local
348 S32 res; local
366 S32 res; local
384 S32 res; local
403 S32 res, len; local
426 S32 res; local
446 S32 res; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_toom_sqr.c 23 int res, B; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
27 return res;
34 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) {
38 if ((res = mp_copy(a, &a1)) != MP_OKAY) {
44 if ((res = mp_copy(a, &a2)) != MP_OKAY) {
50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) {
55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) {
60 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) {
63 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY)
    [all...]
bn_mp_toom_mul.c 28 int res, B; local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
34 return res;
41 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) {
45 if ((res = mp_copy(a, &a1)) != MP_OKAY) {
51 if ((res = mp_copy(a, &a2)) != MP_OKAY) {
57 if ((res = mp_mod_2d(b, DIGIT_BIT * B, &b0)) != MP_OKAY) {
61 if ((res = mp_copy(b, &b1)) != MP_OKAY) {
67 if ((res = mp_copy(b, &b2)) != MP_OKAY) {
73 if ((res = mp_mul(&a0, &b0, &w0)) != MP_OKAY)
    [all...]
bn_mp_sqrt.c 21 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 = mp_div_2(&t1,&t1)) != MP_OKAY)
    [all...]
  /frameworks/base/core/tests/coretests/res/raw/
install_shared1_cert1_cert2 
install_shared2_cert1_cert2 
  /external/icu4c/tools/genrb/
reslist.c 37 uint32_t res_write(UNewDataMemory *mem, struct SResource *res,
69 static uint32_t string_write(UNewDataMemory *mem, struct SResource *res,
71 udata_write32(mem, res->u.fString.fLength);
72 udata_writeUString(mem, res->u.fString.fChars, res->u.fString.fLength + 1);
73 udata_writePadding(mem, calcPadding(res->fSize));
79 static uint32_t alias_write(UNewDataMemory *mem, struct SResource *res,
81 udata_write32(mem, res->u.fString.fLength);
82 udata_writeUString(mem, res->u.fString.fChars, res->u.fString.fLength + 1)
442 struct SResource *res; local
470 struct SResource *res = res_open(comment, status); local
498 struct SResource *res = res_open(comment, status); local
524 struct SResource *res = res_open(comment, status); local
557 struct SResource *res = res_open(comment, status); local
590 struct SResource *res = res_open(comment, status); local
620 struct SResource *res = res_open(comment, status); local
642 struct SResource *res = res_open(comment, status); local
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
fastidct.cpp 330 int res, res2; local
342 res = tmp + (pred_word & 0xFF);
343 CLIP_RESULT(res);
346 dst_word = (res2 << 8) | res;
347 res = tmp + ((pred_word >> 16) & 0xFF);
348 CLIP_RESULT(res);
349 dst_word |= (res << 16);
350 res = tmp + ((pred_word >> 24) & 0xFF);
351 CLIP_RESULT(res);
352 dst_word |= (res << 24)
377 int res, res2; local
436 int res, res2; local
506 int res, res2; local
582 int res, res2; local
639 int res, res2; local
695 int res, res2; local
750 int res, res2; local
871 int res, res2; local
926 int res, res2; local
992 int res, res2; local
1065 int res, res2; local
1120 int res, res2; local
1173 int res, res2; local
1226 int res, res2; local
1325 int res, res2; local
1373 int res, res2; local
1433 int res, res2; local
1504 int res, res2; local
1581 int res, res2; local
1639 int res, res2; local
1696 int res, res2; local
1752 int res, res2; local
    [all...]
  /external/v8/test/mjsunit/
switch.js 148 var res = 0;
151 case 0: res += 0; break;
152 case 1: res += 1; break;
153 case 2: res += 2; break;
154 case 3: res += 3; break;
155 case 4: res += 4; break;
156 case 5: res += 5; break;
157 case 6: res += 6; break;
158 case 7: res += 7; break;
159 case 8: res += 8; break
    [all...]
  /external/qemu/target-arm/
op_addsub.h 21 res |= ((uint32_t)(glue(glue(uint,width),_t))(val)) << (n * width)
25 uint32_t res = 0; local
31 return res;
36 uint32_t res = 0; local
44 return res;
49 uint32_t res = 0; local
55 return res;
60 uint32_t res = 0; local
68 return res;
73 uint32_t res = 0 local
84 uint32_t res = 0; local
    [all...]
  /external/icu4c/test/testdata/
testdata.mak 8 .SUFFIXES : .res .txt
17 # icu26_testtypes.res is there for cintltst/udatatst.c/TestSwapData()
23 # icu26e_testtypes.res is the same, but icuswapped to big-endian EBCDIC
29 TEST_RES_FILES = $(TEST_RES_SOURCE:.txt=.res)
31 "$(TESTDATAOUT)\testdata.dat" : $(TEST_RES_FILES) "$(TESTDATABLD)\casing.res" "$(TESTDATABLD)\conversion.res" "$(TESTDATABLD)\icuio.res" "$(TESTDATABLD)\mc.res" "$(TESTDATABLD)\structLocale.res" "$(TESTDATABLD)\root.res" "$(TESTDATABLD)\sh.res" "$(TESTDATABLD)\sh_YU.res" "$(TESTDATABLD)\te.res" "$(TESTDATABLD)\te_IN (…)
    [all...]
  /external/icu4c/samples/uresb/
resources.mak 4 TARGETS = en.res root.res sr.res
20 en.res : en.txt
23 root.res : root.txt
26 sr.res : sr.txt
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-96526-003.js 53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm
    [all...]
  /external/stlport/test/unit/
ctype_facets_test.cpp 46 ctype_base::mask res[sizeof(values)]; local
47 ct.is(values, values + sizeof(values), res);
49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 );
50 CPPUNIT_ASSERT( (res[0] & ctype_base::digit) != 0 );
51 CPPUNIT_ASSERT( (res[0] & ctype_base::xdigit) != 0 );
53 CPPUNIT_ASSERT( (res[1] & ctype_base::print) != 0 );
54 CPPUNIT_ASSERT( (res[1] & ctype_base::alpha) != 0 );
55 CPPUNIT_ASSERT( (res[1] & ctype_base::xdigit) != 0 );
56 CPPUNIT_ASSERT( (res[1] & ctype_base::upper) != 0 );
58 CPPUNIT_ASSERT( (res[2] & ctype_base::print) != 0 )
79 const char *res; local
99 const char *res; local
151 char res[sizeof(range)]; local
164 char res[sizeof(range)]; local
190 ctype_base::mask res[sizeof(values) \/ sizeof(wchar_t)]; local
223 const wchar_t *res; local
243 const wchar_t *res; local
295 wchar_t res[sizeof(range)]; local
309 char res[sizeof(range) \/ sizeof(wchar_t)]; local
    [all...]
  /external/speex/libspeex/
fixed_debug.h 52 int res; local
57 res = -x;
58 if (!VERIFY_SHORT(res))
59 fprintf (stderr, "NEG16: output is not short: %d\n", (int)res);
61 return res;
65 long long res; local
70 res = -x;
71 if (!VERIFY_INT(res))
72 fprintf (stderr, "NEG16: output is not int: %d\n", (int)res);
74 return res;
80 int res; local
93 int res; local
106 int res; local
120 int res; local
134 long long res; local
149 long long res; local
176 int res; local
193 int res; local
208 long long res; local
224 long long res; local
241 int res; local
256 long long res; local
277 long long res; local
293 long long res; local
328 long long res; local
342 long long res; local
356 long long res; local
370 long long res; local
387 long long res; local
404 long long res; local
421 long long res; local
441 long long res; local
467 long long res; local
    [all...]
  /external/iproute2/ip/
rtm_map.c 62 unsigned long res; local
65 res = RTN_LOCAL;
67 res = RTN_NAT;
70 res = RTN_BROADCAST;
72 res = RTN_ANYCAST;
74 res = RTN_MULTICAST;
76 res = RTN_PROHIBIT;
78 res = RTN_UNREACHABLE;
80 res = RTN_BLACKHOLE;
82 res = RTN_XRESOLVE
    [all...]
  /external/jdiff/src/jdiff/
Modifiers.java 62 String res = ""; local
65 res += "Change from ";
67 res += "static to non-static.<br>";
69 res += "non-static to static.<br>";
74 res += " ";
75 res += "Change from ";
77 res += "final to non-final.<br>";
79 res += "non-final to final.<br>";
84 res += " ";
86 res += "Change from deprecated to undeprecated.<br>"
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ResourceNameTest.java 17 package android.content.res.cts;
19 import android.content.res.Resources;
29 final Resources res = mContext.getResources(); local
31 final String fullName = res.getResourceName(R.configVarying.simple);
34 final String packageName = res.getResourcePackageName(R.configVarying.simple);
37 final String typeName = res.getResourceTypeName(R.configVarying.simple);
40 final String entryName = res.getResourceEntryName(R.configVarying.simple);
46 final Resources res = mContext.getResources(); local
47 int resid = res.getIdentifier(
52 resid = res.getIdentifier("configVarying/simple", null
    [all...]
ConfigTest.java 17 package android.content.res.cts;
21 import android.content.res.AssetManager;
22 import android.content.res.Configuration;
23 import android.content.res.Resources;
24 import android.content.res.TypedArray;
25 import android.content.res.Resources.NotFoundException;
49 private static void checkValue(final Resources res, final int resId,
52 final String actual = res.getString(resId);
65 private static void checkValue(final Resources res, final int resId,
67 final Resources.Theme theme = res.newTheme()
188 Resources res = config.getResources(); local
319 Resources res = config.getResources(); local
395 Resources res = config.getResources(); local
436 Resources res = config.getResources(); local
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
cu_wext.c 69 S32 res = 0; local
75 res = 1;
150 return res;
181 S32 res; local
189 res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWESSID, &pCuWext->req_data, sizeof(struct iw_point));
190 if(res != OK)
191 return res;
201 S32 res,i; local
205 res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWAP, &pCuWext->req_data, sizeof(struct sockaddr));
206 if(res != OK)
218 S32 res; local
235 S32 res; local
254 S32 res; local
293 S32 res, NumberOfItems; local
353 S32 res; local
368 S32 res; local
389 S32 res; local
406 S32 res; local
423 S32 res; local
440 S32 res; local
457 S32 res; local
473 S32 res; local
    [all...]

Completed in 499 milliseconds

12 3 4 5 6 7 8 91011>>