/external/libxml2/ |
uri.c | 1049 int val = *(unsigned char *)p++; local 1050 int hi = val / 0x10, lo = val % 0x10; 1093 int val = *(unsigned char *)p++; local 1094 int hi = val / 0x10, lo = val % 0x10; 1180 int val = *(unsigned char *)p++; local 1181 int hi = val / 0x10, lo = val % 0x10; 1248 int val = *(unsigned char *)p++ local 1317 int val = *(unsigned char *)p++; local 1357 int val = *(unsigned char *)p++; local 1765 unsigned char val; local 1944 xmlChar *val = NULL; local 2225 xmlChar *val = NULL; local [all...] |
/external/nist-sip/java/gov/nist/core/ |
LexerCore.java | 99 Integer val = Integer.valueOf(value); local 100 currentLexer.put(name, val); 101 if (!globalSymbolTable.containsKey(val)) 102 globalSymbolTable.put(val, name);
|
/external/openssl/crypto/asn1/ |
asn_mime.c | 90 static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags, 115 int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 122 bio = BIO_new_NDEF(out, val, it); 142 ASN1_item_i2d_bio(it, out, val); 148 static int B64_write_ASN1(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 162 r = i2d_ASN1_bio_stream(out, val, in, flags, it); 171 int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 177 r = B64_write_ASN1(out, val, in, flags, it); 185 ASN1_VALUE *val; local 191 val = ASN1_item_d2i_bio(it, bio, NULL) 435 ASN1_VALUE *val; local [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-internal.h | 96 inline void GTestStreamToHelper(std::ostream* os, const T& val) { 97 *os << val; local [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
deflate.c | 683 int val; local 693 val = 1; 697 val = s->gzhead->name[s->gzindex++]; 698 put_byte(s, val); 699 } while (val != 0); 703 if (val == 0) { 714 int val; local 724 val = 1; 728 val = s->gzhead->comment[s->gzindex++]; 729 put_byte(s, val); [all...] |
/external/qemu/hw/ |
bt-l2cap.c | 505 uint32_t val; local 529 val = le16_to_cpup((void *) opt->val); 530 if (val < ch->min_mtu) { 531 cpu_to_le16w((void *) opt->val, ch->min_mtu); 536 ch->params.remote_mtu = val; 546 val = le16_to_cpup((void *) opt->val); 547 if (val < 0x0001) { 548 opt->val[0] = 0xff [all...] |
pci.c | 172 unsigned long val; local 177 val = strtoul(p, &e, 16); 181 bus = val; 183 val = strtoul(p, &e, 16); 188 bus = val; 190 val = strtoul(p, &e, 16); 196 if (dom > 0xffff || bus > 0xff || val > 0x1f) 199 slot = val; 437 uint32_t val; local 443 val = le32_to_cpu(*(uint32_t *)(d->config + address)) 605 uint32_t val; local [all...] |
smc91c111.c | 245 #define SET_LOW(name, val) s->name = (s->name & 0xff00) | val 246 #define SET_HIGH(name, val) s->name = (s->name & 0xff) | (val << 8) 580 uint32_t val; local 581 val = smc91c111_readb(opaque, offset); 582 val |= smc91c111_readb(opaque, offset + 1) << 8; 583 return val; 588 uint32_t val; local 589 val = smc91c111_readw(opaque, offset) [all...] |
/external/qemu/tcg/i386/ |
tcg-target.c | 141 static inline int tcg_target_const_match(tcg_target_long val, 279 static inline void tgen_arithi(TCGContext *s, int c, int r0, int32_t val, int cf) 281 if (!cf && ((c == ARITH_ADD && val == 1) || (c == ARITH_SUB && val == -1))) { 284 } else if (!cf && ((c == ARITH_ADD && val == -1) || (c == ARITH_SUB && val == 1))) { 287 } else if (val == (int8_t)val) { 289 tcg_out8(s, val); 290 } else if (c == ARITH_AND && val == 0xffu && r0 < 4) 310 int32_t val, val1; local 977 int32_t val; local [all...] |
/external/qemu/tcg/x86_64/ |
tcg-target.c | 172 static inline int tcg_target_const_match(tcg_target_long val, 179 else if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) 181 else if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) 275 tcg_target_long val; local 277 val = offset - ((tcg_target_long)s->code_ptr + 5 + (-rm - 1)); 278 if (val == (int32_t)val) { 281 tcg_out32(s, val); 468 int32_t val, val1; local 1061 int32_t val; local 1076 int32_t val; local [all...] |
/external/qemu/telephony/ |
gsm.c | 25 gsm_int_from_bcdi( byte_t val ) 29 if ((val & 0xf0) <= 0x90) 30 ret = (val >> 4); 32 if ((val & 0x0f) <= 0x90) 33 ret |= (val % 0xf)*10; 161 gsm_hex_from_byte( char* hex, int val ) 165 hex[0] = hexdigits[(val >> 4) & 15]; 166 hex[1] = hexdigits[val & 15]; 170 gsm_hex_from_short( char* hex, int val ) 172 gsm_hex_from_byte( hex, (val >> 8) ) 751 unsigned val = (p[0] >> shift) & 0x7f; local [all...] |
/external/quake/quake/src/QW/client/ |
cl_input.c | 172 float val; local 178 val = 0; 182 val = 0.5; // pressed and held this frame 184 val = 0; // I_Error (); 188 val = 0; // I_Error (); 190 val = 0; // released this frame 194 val = 1.0; // held the entire frame 196 val = 0; // up the entire frame 200 val = 0.75; // released and re-pressed this frame 202 val = 0.25; // pressed and released this fram [all...] |
/external/quake/quake/src/QW/server/ |
sv_user.c | 300 eval_t *val; local 357 val = GetEdictFieldValue(ent, "gravity"); 358 if (val) 359 val->_float = 1.0; 361 val = GetEdictFieldValue(ent, "maxspeed"); 362 if (val) 363 val->_float = sv_maxspeed.value; [all...] |
/external/quake/quake/src/WinQuake/ |
host_cmd.cpp | 1527 eval_t *val; local 1580 val = GetEdictFieldValue(sv_player, "ammo_shells1"); 1581 if (val) 1582 val->_float = v; 1590 val = GetEdictFieldValue(sv_player, "ammo_nails1"); 1591 if (val) 1593 val->_float = v; 1606 val = GetEdictFieldValue(sv_player, "ammo_lava_nails"); 1607 if (val) 1609 val->_float = v [all...] |
net_ipx.cpp | 600 int val;
local 610 if (sscanf (buf, "%x", &val) != 1) \
612 ((struct sockaddr_ipx *)addr)->sipx_addr.dest = val
626 sscanf (&string[22], "%u", &val);
627 ((struct sockaddr_ipx *)addr)->sipx_port = htons(val);
|
pr_edict.cpp | 280 char *PR_ValueString (etype_t type, eval_t *val) 291 sprintf (line, "%s", pr_strings + val->string); 294 sprintf (line, "entity %i", NUM_FOR_EDICT(PROG_TO_EDICT(val->edict)) ); 297 f = pr_functions + val->function; 301 def = ED_FieldAtOfs ( val->_int ); 308 sprintf (line, "%5.1f", val->_float); 311 sprintf (line, "'%5.1f %5.1f %5.1f'", val->vector[0], val->vector[1], val->vector[2]); 332 char *PR_UglyValueString (etype_t type, eval_t *val) 386 void *val; local [all...] |
sv_phys.cpp | 381 eval_t *val; local 383 val = GetEdictFieldValue(ent, "gravity"); 384 if (val && val->_float) 385 ent_gravity = val->_float; [all...] |
/external/skia/src/core/ |
SkBitmapProcState_matrix_clamp.h | 37 /* SkClampMax(val,max) -- bound to 0..max */ 429 uint32_t val; local 430 val = (TILEY_PROCF (base_srcXY[i * 2 + 1], maxY) << 16) | 433 if (val != base_xy[i]) { 443 uint32_t val; local 444 val = (TILEY_PROCF (base_srcXY[i * 2 + 1], maxY) << 16) | 448 i, base_xy[i], val, base_srcXY[i * 2 + 0], 714 uint32_t val; local 715 val = PACK_FILTER_Y_NAME(fyp, maxY, oneY PREAMBLE_ARG_Y); 716 if (val != xy[i*2+0]) [all...] |
SkMath.cpp | 435 double val = sin(rad); local 436 int ival = (int)(val * SK_Fixed1);
|
/external/skia/src/opts/ |
SkBlitRow_opts_arm.cpp | 999 uint16_t val = SkDitherRGB32To565(c, dither); local [all...] |
/external/strace/ |
system.c | 2056 int val; local [all...] |
/external/svox/pico/lib/ |
picosa.c | 494 picoos_uint8 val; local 497 val = PICOKDT_EPSILON; 498 for (i = ind + 1; ((val == PICOKDT_EPSILON) && (i < top)); i++) { 502 val = sa->headx[i].head.info1; 506 return val; [all...] |
/external/tremolo/Tremolo/ |
framing.c | 387 static void oggbyte_set4(oggbyte_buffer *b,ogg_uint32_t val,int pos){ 392 b->ptr[pos-b->pos]=val; 393 val>>=8; 892 int val=oggbyte_read1(ob,27+os->laceptr++); local 893 os->body_fill_next+=val; 894 if(val<255){
|
/external/webkit/JavaScriptCore/yarr/ |
RegexCompiler.cpp | 166 int val = matches[pos+index] - ch; local 167 if (!val) 169 else if (val > 0)
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8DOMWindowCustom.cpp | 469 String val = featureString.substring(pos + 1).stripWhiteSpace().lower(); local 470 int spacePos = val.find(' '); 472 val = val.left(spacePos); 473 map.set(key, val);
|