/external/chromium_org/net/dns/ |
dns_config_service_posix_unittest.cc | 32 // Fills in |res| with sane configuration. 33 void InitializeResState(res_state res) { 34 memset(res, 0, sizeof(*res)); 35 res->options = RES_INIT | RES_RECURSE | RES_DEFNAMES | RES_DNSRCH | 37 res->ndots = 2; 38 res->retrans = 4; 39 res->retry = 7; 42 memcpy(res->defdname, kDnsrch, sizeof(kDnsrch)); 43 res->dnsrch[0] = res->defdname 114 struct __res_state res; local 130 struct __res_state res = {}; local [all...] |
/external/chromium/base/ |
atomic_ref_count.h | 35 bool res = (subtle::Barrier_AtomicIncrement(ptr, -decrement) != 0); local 36 if (!res) { 39 return res; 61 bool res = (subtle::Acquire_Load(ptr) == 1); local 62 if (res) { 65 return res; 72 bool res = (subtle::Acquire_Load(ptr) == 0); local 73 if (res) { 76 return res;
|
/external/chromium_org/base/ |
atomic_ref_count.h | 34 bool res = (subtle::Barrier_AtomicIncrement(ptr, -decrement) != 0); local 35 if (!res) { 38 return res; 60 bool res = (subtle::Acquire_Load(ptr) == 1); local 61 if (res) { 64 return res; 71 bool res = (subtle::Acquire_Load(ptr) == 0); local 72 if (res) { 75 return res;
|
/external/chromium_org/third_party/opus/src/silk/arm/ |
macros_armv5e.h | 36 int res; local 40 : "=r"(res) 43 return res; 52 int res; local 56 : "=r"(res) 59 return res; 67 int res; local 71 : "=r"(res) 74 return res; 83 int res; local 98 int res; local 114 int res; local 129 int res; local 145 int res; local 160 int res; local 174 int res; local 188 int res; local 202 int res; local [all...] |
SigProc_FIX_armv5e.h | 35 opus_int32 res; local 39 : "=r"(res) 42 return res; 50 opus_int32 res; local 54 : "=r"(res) 57 return res;
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
inspector_memory.py | 36 res = self._inspector_backend.SyncRequest({ 39 if ('result' not in res or 40 'nodes' not in res['result'] or 41 'documents' not in res['result'] or 42 'jsEventListeners' not in res['result']): 45 json.dumps(res, indent=2)) 47 'nodes': res['result']['nodes'], 48 'documents': res['result']['documents'], 49 'jsEventListeners': res['result']['jsEventListeners']
|
inspector_runtime.py | 46 res = self._inspector_backend.SyncRequest(request, timeout) 47 if 'error' in res: 48 raise exceptions.EvaluateException(res['error']['message']) 50 if 'wasThrown' in res['result'] and res['result']['wasThrown']: 53 raise exceptions.EvaluateException(res['result']['result']['description']) 54 if res['result']['result']['type'] == 'undefined': 56 return res['result']['result']['value']
|
/external/clang/test/Analysis/ |
dynamic-cast.cpp | 25 const int* res = 0; local 29 res = &i; 31 res = 0; 33 return *res; // no warning 40 const int* res = 0; local 43 res = &i; 45 res = 0; 47 return *res; // no warning 55 const int* res = 0; local 58 res = &i 70 const int* res = 0; local 106 const int* res = 0; local 149 const int* res = 0; local 162 const int* res = 0; local 194 const int* res = 0; local 237 const int* res = 0; local [all...] |
/external/dropbear/libtommath/ |
bn_mp_lcm.c | 21 int res; local 25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) { 26 return res; 30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) { 37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) { 40 res = mp_mul(b, &t2, c); 43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) { 46 res = mp_mul(a, &t2, c); 54 return res;
|
bn_mp_reduce.c | 25 int res, um = m->used; local 28 if ((res = mp_init_copy (&q, x)) != MP_OKAY) { 29 return res; 37 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) { 42 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) { 46 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) { 51 res = MP_VAL; 61 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) { 66 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) { 71 if ((res = mp_sub (x, &q, x)) != MP_OKAY) [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3OutputStream.cpp | 86 status_t res; local 88 if ((res = getBufferPreconditionCheckLocked()) != OK) { 89 return res; 109 res = currentConsumer->dequeueBuffer(currentConsumer.get(), &anb, &fenceFd); 111 if (res != OK) { 113 __FUNCTION__, mId, strerror(-res), res); 114 return res; 132 status_t res = returnAnyBufferLocked(buffer, timestamp, /*output*/true); local 134 if (res != OK) 153 status_t res; local 239 status_t res = OK; local 258 status_t res; local 350 status_t res; local 383 status_t res; local [all...] |
/external/valgrind/main/VEX/priv/ |
host_generic_simd128.c | 133 h_generic_calc_Mul32x4 ( /*OUT*/V128* res, 136 res->w32[0] = mul32(argL->w32[0], argR->w32[0]); 137 res->w32[1] = mul32(argL->w32[1], argR->w32[1]); 138 res->w32[2] = mul32(argL->w32[2], argR->w32[2]); 139 res->w32[3] = mul32(argL->w32[3], argR->w32[3]); 143 h_generic_calc_Max32Sx4 ( /*OUT*/V128* res, 146 res->w32[0] = max32S(argL->w32[0], argR->w32[0]); 147 res->w32[1] = max32S(argL->w32[1], argR->w32[1]); 148 res->w32[2] = max32S(argL->w32[2], argR->w32[2]); 149 res->w32[3] = max32S(argL->w32[3], argR->w32[3]) [all...] |
/external/libvpx/libvpx/test/ |
svc_test.cc | 50 const vpx_codec_err_t res = local 52 EXPECT_EQ(VPX_CODEC_OK, res); 83 vpx_codec_err_t res = vpx_svc_init(NULL, &codec_, codec_iface_, &codec_enc_); local 84 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); 85 res = vpx_svc_init(&svc_, NULL, codec_iface_, &codec_enc_); 86 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); 87 res = vpx_svc_init(&svc_, &codec_, NULL, &codec_enc_); 88 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); 90 res = vpx_svc_init(&svc_, &codec_, codec_iface_, NULL); 91 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, res); 107 vpx_codec_err_t res = vpx_svc_init(&svc_, &codec_, codec_iface_, &codec_enc_); local 117 vpx_codec_err_t res = vpx_svc_set_options(&svc_, NULL); local 127 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "layers=3"); local 136 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "encoding-mode=alt-ip"); local 145 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "layers=2 encoding-mode=ip"); local 155 vpx_codec_err_t res = local 170 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "quantizers=not-quantizers"); local 182 vpx_codec_err_t res = vpx_svc_set_quantizers(NULL, "40,30"); local 203 vpx_codec_err_t res = vpx_svc_set_scale_factors(NULL, "4\/16,16\/16"); local 232 vpx_codec_err_t res = local 260 vpx_codec_err_t res = local 314 vpx_codec_err_t res = 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/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
|
/packages/apps/Settings/src/com/android/settings/applications/ |
InterestingConfigChanges.java | 20 import android.content.res.Configuration; 21 import android.content.res.Resources; 27 boolean applyNewConfig(Resources res) { 28 int configChanges = mLastConfiguration.updateFrom(res.getConfiguration()); 29 boolean densityChanged = mLastDensity != res.getDisplayMetrics().densityDpi; 32 mLastDensity = res.getDisplayMetrics().densityDpi;
|
/cts/tests/tests/content/src/android/content/res/cts/ |
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; 54 private static void checkValue(final Resources res, final int resId, 57 final String actual = res.getString(resId); 70 private static void checkValue(final Resources res, final int resId, 72 final Resources.Theme theme = res.newTheme() 220 Resources res = config.getResources(); local 424 Resources res = config.getResources(); local 633 Resources res = config.getResources(); local 701 Resources res = config.getResources(); local 746 Resources res = config.getResources(); local 882 Resources res = config.getResources(); local 987 Resources res = config.getResources(); local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
table.c | 127 TabResult res; local 133 res.zErrMsg = 0; 134 res.nRow = 0; 135 res.nColumn = 0; 136 res.nData = 1; 137 res.nAlloc = 20; 138 res.rc = SQLITE_OK; 139 res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc ); 140 if( res.azResult==0 ) [all...] |
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
double-free.cc | 8 int res = x[argc]; local 17 return res;
|
heap-overflow.cc | 15 int res = x[argc * 10]; // BOOOM local 27 return res;
|
huge_negative_hea_oob.cc | 9 int res = x[-argc * 4000]; // BOOOM local 12 return res;
|
invalid-free.cc | 8 int res = x[argc]; local 15 return res;
|
log-path_test.cc | 33 int res = x[argc * 10]; // BOOOM local 35 return res;
|
memcmp_strict_test.cc | 11 int res = memcmp(kFoo, kFubar, strlen(kFubar)); local 12 printf("res: %d\n", res);
|
memcmp_test.cc | 10 int res = memcmp(a1, a2, 4 + argc); // BOOM local 14 return res;
|