HomeSort by relevance Sort by last modified time
    Searched refs:lb (Results 1 - 25 of 456) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/dns/nameser/
ns_samedomain.c 56 size_t la, lb, i; local
61 lb = strlen(b);
80 if (lb != 0U && b[lb - 1] == '.') {
82 /* note this loop doesn't get executed if lb==1 */
83 for (i = lb - 1; i > 0; i--)
92 lb--;
95 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */
96 if (lb == 0U)
100 if (lb > la
    [all...]
  /external/qemu/tcg/
tcg-be-ldst.h 62 TCGLabelQemuLdst *lb = s->be->ldst_labels; local
67 if (lb[i].is_ld) {
68 tcg_out_qemu_ld_slow_path(s, lb + i);
70 tcg_out_qemu_st_slow_path(s, lb + i);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
re.h 29 unsigned int lb, ub; /* [lb,ub) */ member in struct:Range
36 r->lb = l;
45 r->lb = l;
54 ro->lb = r->lb;
63 ro->lb = r->lb;
171 RegExp_new_CloseVOp(RegExp *e, int lb, int ub)
176 r->d.CloseVOp.min = lb;
    [all...]
actions.c 109 for(c = r->lb; c < r->ub; ++c)
159 for(c = r->lb; c < r->ub; ++c){
247 for(c = r->lb; c < r->ub; ++c){
338 if((r->ub - r->lb) == 1){
339 prtCh(o, r->lb);
341 prtCh(o, r->lb);
352 if(r1->lb <= r2->lb){
360 if(r1->lb <= r2->lb){
398 unsigned int lb = r1->lb; local
495 unsigned char lb = unescape(s), ub; local
    [all...]
  /external/clang/test/CodeGen/
asm.c 177 unsigned int lb = b; local
180 __asm__ ("0:\n1:\n" : [bigres] "=la"(bigres) : [la] "0"(la), [lb] "c"(lb) :
189 unsigned int lb = b; local
191 __asm__ ("0:\n1:\n" : [res] "=la"(res) : [la] "0"(la), [lb] "c"(lb) :
  /external/openssl/crypto/bn/
bn_shift.c 137 int i,nw,lb,rb; local
147 lb=n%BN_BITS2;
148 rb=BN_BITS2-lb;
152 if (lb == 0)
160 t[nw+i]=(l<<lb)&BN_MASK2;
173 int i,j,nw,lb,rb; local
182 lb=BN_BITS2-rb;
217 *(t++) =(tmp|(l<<lb))&BN_MASK2;
  /art/compiler/dex/
global_value_numbering.cc 157 auto lb = field_index_map_.lower_bound(key); local
158 if (lb != field_index_map_.end() && !field_index_map_.key_comp()(key, lb->first)) {
159 return lb->second;
163 auto it = field_index_map_.PutBefore(lb, key, id);
171 auto lb = array_location_map_.lower_bound(key); local
172 if (lb != array_location_map_.end() && !cmp(key, lb->first)) {
173 return lb->second;
177 auto it = array_location_map_.PutBefore(lb, key, location)
    [all...]
global_value_numbering.h 88 ValueMap::iterator lb = global_value_map_.lower_bound(key); local
89 if (lb != global_value_map_.end() && lb->first == key) {
90 res = lb->second;
93 global_value_map_.PutBefore(lb, key, res);
177 auto lb = ref_set_map_.lower_bound(ref_set); local
178 if (lb != ref_set_map_.end() && !ref_set_map_.key_comp()(ref_set, lb->first)) {
179 res = lb->second;
182 ref_set_map_.PutBefore(lb, ref_set, res)
    [all...]
local_value_numbering.cc 81 auto lb = lvn->non_aliasing_ifield_value_map_.find(loc); local
82 return (lb != lvn->non_aliasing_ifield_value_map_.end())
83 ? lb->second
198 auto lb = map->lower_bound(key); local
199 if (lb == map->end() || map->key_comp()(key, lb->first)) {
200 lb = map->PutBefore(lb, key, AliasingValues(this));
202 return &lb->second;
260 auto lb = values->load_value_map.lower_bound(location) local
693 auto lb = merge_map_.lower_bound(merge_names_); local
728 auto lb = merge_map_.lower_bound(merge_names_); local
847 auto lb = merge_map_.lower_bound(merge_names_); local
976 auto lb = null_checked_.lower_bound(reg); local
991 auto lb = range_checked_.lower_bound(key); local
1061 auto lb = merge_map_.lower_bound(merge_names_); local
1158 auto lb = non_aliasing_ifield_value_map_.lower_bound(loc); local
1218 auto lb = non_aliasing_ifield_value_map_.lower_bound(loc); local
1262 auto lb = sfield_value_map_.lower_bound(field_id); local
1306 auto lb = sfield_value_map_.lower_bound(field_id); local
    [all...]
  /external/e2fsprogs/util/
copy_sparse.c 93 long lb, i, fd, ofd, bs, block, numblocks; local
147 for (lb = 0; !fd || lb < numblocks; lb++) {
149 block = get_bmap(fd, lb);
152 should_be = ((off64_t) lb) * bs;
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
eval_param.pass.cpp 59 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
61 const size_t Ni = ub - lb;
67 double mean = std::accumulate(lb, ub, 0.0) / Ni;
71 for (I j = lb; j != ub; ++j)
eval.pass.cpp 57 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
59 const size_t Ni = ub - lb;
65 double mean = std::accumulate(lb, ub, 0.0) / Ni;
69 for (I j = lb; j != ub; ++j)
117 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
119 const size_t Ni = ub - lb;
125 double mean = std::accumulate(lb, ub, 0.0) / Ni;
129 for (I j = lb; j != ub; ++j)
177 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
179 const size_t Ni = ub - lb;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
eval_param.pass.cpp 59 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
61 const size_t Ni = ub - lb;
67 double mean = std::accumulate(lb, ub, 0.0) / Ni;
71 for (I j = lb; j != ub; ++j)
eval.pass.cpp 57 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
59 const size_t Ni = ub - lb;
65 double mean = std::accumulate(lb, ub, 0.0) / Ni;
69 for (I j = lb; j != ub; ++j)
117 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
119 const size_t Ni = ub - lb;
125 double mean = std::accumulate(lb, ub, 0.0) / Ni;
129 for (I j = lb; j != ub; ++j)
177 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
179 const size_t Ni = ub - lb;
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
shift.c 62 int i, nw, lb, rb; local
71 lb = n % BN_BITS2;
72 rb = BN_BITS2 - lb;
76 if (lb == 0) {
84 t[nw + i] = (l << lb) & BN_MASK2;
126 int i, j, nw, lb, rb; local
132 lb = BN_BITS2 - rb;
163 *(t++) = (tmp | (l << lb)) & BN_MASK2;
  /external/openssl/crypto/cmac/
cmac.c 263 int i, bl, lb; local
274 lb = ctx->nlast_block;
276 if (lb == bl)
283 ctx->last_block[lb] = 0x80;
284 if (bl - lb > 1)
285 memset(ctx->last_block + lb + 1, 0, bl - lb - 1);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 136 long double ha, hb, la, lb, p, q; local
146 lb = b - hb;
149 q = ha * lb + la * hb;
152 ret.lo = p - ret.hi + q + la * lb;
s_fma.c 140 double ha, hb, la, lb, p, q; local
150 lb = b - hb;
153 q = ha * lb + la * hb;
156 ret.lo = p - ret.hi + q + la * lb;
  /external/chromium_org/third_party/skia/experimental/benchtools/
greenify.py 112 lb = float(data.group(2))
118 lb = lb + shift
121 if actual < lb:
122 lb = actual - abs(shift) * 0.1 + 0.5
125 row_dic[row] = '%.2f,%.2f,%.2f' % (avg, lb, ub)
  /external/llvm/test/MC/Mips/
micromips-loadstore-instructions.s 12 # CHECK-EL: lb $5, 8($4) # encoding: [0xa4,0x1c,0x08,0x00]
26 # CHECK-EB: lb $5, 8($4) # encoding: [0x1c,0xa4,0x00,0x08]
37 lb $5, 8($4)
  /external/skia/experimental/benchtools/
greenify.py 112 lb = float(data.group(2))
118 lb = lb + shift
121 if actual < lb:
122 lb = actual - abs(shift) * 0.1 + 0.5
125 row_dic[row] = '%.2f,%.2f,%.2f' % (avg, lb, ub)
  /external/pixman/pixman/
pixman-gradient-walker.c 61 float la, lr, lg, lb; local
133 lb = (left_c->blue * (1.0f/257.0f));
149 walker->b_b = (lb + rb) / 510.0f;
158 walker->b_b = (lb * rx - rb * lx) * w_rec * (1.0f/255.0f);
163 walker->b_s = (rb - lb) * w_rec * (1.0f/255.0f);
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 208 resize_line(lb, len)
209 struct line *lb;
213 inactive = lb->active - lb->text;
217 if (inactive > lb->alloc * 2)
219 MEMMOVE(lb->text, lb->active, lb->length);
220 lb->alloc += lb->active - lb->text
    [all...]
  /external/e2fsprogs/debugfs/
debugfs.c 445 static void finish_range(struct list_blocks_struct *lb)
447 if (lb->first_block == 0)
449 if (lb->first)
450 lb->first = 0;
452 fprintf(lb->f, ", ");
453 if (lb->first_block == lb->last_block)
454 fprintf(lb->f, "(%lld):%llu",
455 (long long)lb->first_bcnt, lb->first_block)
469 struct list_blocks_struct *lb = (struct list_blocks_struct *) private; variable in typeref:struct:list_blocks_struct
486 finish_range(lb); variable
494 finish_range(lb); variable
578 struct list_blocks_struct lb; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/toolbar/
toolbar_button.cc 173 gfx::Rect lb = GetLocalBounds();
177 gfx::Point menu_position(lb.origin());
178 menu_position.Offset(0, lb.height() - 1);
180 menu_position.Offset(lb.width() - 1, 0);

Completed in 428 milliseconds

1 2 3 4 5 6 7 8 91011>>