HomeSort by relevance Sort by last modified time
    Searched defs:rc (Results 401 - 425 of 963) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/test/intltest/
simplethread.cpp 369 int32_t rc; local
379 rc = pthread_attr_create(&attr);
382 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
385 rc = pthread_attr_init(&attr);
401 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);
404 if (rc != 0) {
410 return rc;
  /external/icu/icu4c/source/tools/icuswap/
icuswap.cpp 109 int rc; local
168 rc=2;
175 rc=2;
188 rc=2;
197 rc=3;
210 rc=4;
238 rc=4;
248 rc=4;
256 rc=5;
262 rc=6
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IDNA2003.java 66 int rc; local
78 rc=toASCIILower(c1)-toASCIILower(c2);
79 if(rc!=0) {
80 return rc;
UPropertyAliases.java 335 int istra=0, istrb=0, rc; local
371 rc = asciiToLowercase(cstra) - asciiToLowercase(cstrb);
372 if (rc != 0) {
373 return rc;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
ConformanceTest.java 321 int rc; local
322 if((rc = Normalizer.compare(field[0], field[2], (options<<Normalizer.COMPARE_NORM_OPTIONS_SHIFT)|Normalizer.COMPARE_IGNORE_CASE))!=0){
323 errln("Normalizer.compare(original, NFD, case-insensitive) returned "+rc+" instead of 0 for equal");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
IDNAReference.java 71 int rc; local
83 rc=toASCIILower(c1)-toASCIILower(c2);
84 if(rc!=0) {
85 return rc;
NFS4StringPrep.java 102 int left, middle, right,rc; local
109 rc= sortedArr[middle].compareTo(target);
111 if(rc<0){
113 }else if(rc >0){
PunycodeReference.java 235 int rc = punycode_success; local
237 rc = encode(inLen,in,case_flags, outLen, output);
238 if(rc==punycode_big_output){
246 if(rc==punycode_success){
249 getException(rc);
253 private static void getException(int rc)
255 switch(rc){
273 int rc = punycode_success; local
276 rc = decode(input.length(),in, outLen, output,case_flags);
277 if(rc==punycode_big_output)
    [all...]
  /external/iputils/ninfod/
ninfod_core.c 525 int rc; local
618 rc = ni_policy(p);
619 if (rc <= 0) {
623 if (rc < 0) {
  /external/iputils/
tracepath.c 315 int rc; local
375 rc = idna_to_ascii_lz(argv[0], &p, 0);
376 if (rc != IDNA_SUCCESS) {
377 fprintf(stderr, "IDNA encoding failed: %s\n", idna_strerror(rc));
  /external/jdiff/src/jdiff/
JDiff.java 189 int rc = runAnt(args); local
  /external/libedit/src/
el.c 326 el_rfunc_t rc = va_arg(ap, el_rfunc_t); local
327 rv = el_read_setfn(el, rc);
  /external/liblzf/
lzf.c 99 usage (int rc)
112 exit (rc);
118 ssize_t rc = 0, offset = 0; local
121 while (len && (rc = read (fd, &p[offset], len)) > 0)
123 offset += rc;
124 len -= rc;
129 if (rc < 0)
130 return rc;
139 ssize_t rc; local
145 rc = write (fd, b, l)
226 ssize_t rc, cs, us, bytes, over = 0; local
372 int rc; local
453 int rc = 0; local
    [all...]
  /external/libmtp/examples/
sendtr.c 322 int rc; local
326 if ( 0 != (rc=LIBMTP_Get_Storage(device, LIBMTP_STORAGE_SORTBY_NOTSORTED)) )
  /external/libpng/contrib/gregbook/
wpng.c 167 int rc, len = 0; local
653 if ((rc = writepng_init(&wpng_info)) != 0) {
654 switch (rc) {
671 exit(rc);
  /external/libvpx/libvpx/examples/
vpx_temporal_svc_encoder.c 71 static void set_rate_control_metrics(struct RateControlMetrics *rc,
77 rc->layer_framerate[0] = framerate / cfg->ts_rate_decimator[0];
78 rc->layer_pfb[0] = 1000.0 * cfg->ts_target_bitrate[0] /
79 rc->layer_framerate[0];
82 rc->layer_framerate[i] = framerate / cfg->ts_rate_decimator[i];
83 rc->layer_pfb[i] = 1000.0 *
85 (rc->layer_framerate[i] - rc->layer_framerate[i - 1]);
87 rc->layer_input_frames[i] = 0;
88 rc->layer_enc_frames[i] = 0
462 struct RateControlMetrics rc; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ethreading.c 524 int rc = 0; local
574 rc = pthread_create(&cpi->h_encoding_thread[ithread], 0,
576 if(rc)
580 if(rc)
608 rc = pthread_create(&cpi->h_filter_thread, 0, thread_loopfilter,
611 if(rc)
quantize.c 24 int i, rc, eob; local
43 rc = vp8_default_zig_zag1d[i];
44 z = coeff_ptr[rc];
45 zbin = zbin_ptr[rc] ;
52 x += round_ptr[rc];
53 y = ((((x * quant_ptr[rc]) >> 16) + x)
54 * quant_shift_ptr[rc]) >> 16; /* quantize (x) */
56 qcoeff_ptr[rc] = x; /* write to destination */
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value *
72 int i, rc, eob; local
108 int i, rc, eob; local
162 int rc; local
220 int i, rc, eob; local
565 int rc = vp8_default_zig_zag1d[i]; local
    [all...]
tokenize.c 118 int band, rc, v, token; local
156 rc = vp8_default_zig_zag1d[c];
158 v = qcoeff_ptr[rc];
209 int band, rc, v; local
257 rc = vp8_default_zig_zag1d[c];
259 v = qcoeff_ptr[rc];
330 rc = vp8_default_zig_zag1d[c];
332 v = qcoeff_ptr[rc];
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 70 const RATE_CONTROL *rc) {
82 if (rc->avg_frame_bandwidth < factor * number_blocks ||
181 const RATE_CONTROL *const rc = &cpi->rc; local
185 const int apply_cyclic_refresh = apply_cyclic_refresh_bitrate(cm, rc);
211 cr->thresh_rate_sb = (rc->sb64_target_rate * 256) >> 2;
217 cr->thresh_rate_sb = (rc->sb64_target_rate * 256) >> 3;
243 qindex_delta = vp9_compute_qdelta_by_rate(rc, cm->frame_type,
vp9_quantize.c 26 const int rc = 0; local
27 const int coeff = coeff_ptr[rc];
33 tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
35 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
36 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr;
47 const int rc = 0; local
48 const int coeff = coeff_ptr[rc];
55 tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
57 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign
88 const int rc = scan[i]; local
128 const int rc = scan[i]; local
170 const int rc = scan[i]; local
182 const int rc = scan[i]; local
226 const int rc = scan[i]; local
238 const int rc = scan[idx_arr[i]]; local
    [all...]
  /external/ltrace/
breakpoints.c 216 int rc = proc_find_symbol(new_proc, bp->libsym, NULL, &libsym); local
217 assert(rc == 0);
  /external/ltrace/sysdeps/linux-gnu/ia64/
fetch.c 166 int rc = allocate_reg(ctx, proc, long_info, &tmp); local
167 if (rc >= 0) {
172 if (rc < 0)
200 int rc= copy_aggregate_part(ctx, proc, buf, sz); local
202 return rc;
292 int rc = allocate_float(ctx, proc, hfa_info, &tmp, 0); local
293 if (rc >= 0) {
302 rc = -1;
307 if (rc < 0)
319 int rc = allocate_reg(ctx, proc, long_info, &tmp) local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ppc/
fetch.c 345 int rc; local
349 rc = allocate_float(ctx, proc, fp_info, &val);
351 rc = allocate_gpr(ctx, proc, long_info, &val);
353 if (rc >= 0) {
362 if (rc < 0 || fp_info != NULL)
363 return rc;
  /external/lzma/C/
7zDec.c 97 CPpmd7z_RangeDec rc; local
98 Ppmd7z_RangeDec_CreateVTable(&rc);
99 rc.Stream = &s.p;
100 if (!Ppmd7z_RangeDec_Init(&rc))
109 int sym = Ppmd7_DecodeSymbol(&ppmd, &rc.p);
116 else if (s.processed + (s.cur - s.begin) != inSize || !Ppmd7z_RangeDec_IsFinishedOK(&rc))

Completed in 452 milliseconds

<<11121314151617181920>>