HomeSort by relevance Sort by last modified time
    Searched full:val (Results 551 - 575 of 2170) sorted by null

<<21222324252627282930>>

  /external/opencore/oscl/oscl/osclbase/src/
oscl_mem_basic_functions.inl 68 OSCL_INLINE OSCL_COND_EXPORT_REF void* oscl_memset(void* dest, uint8 val, uint32 count)
70 return memset(dest, val, count);
  /external/opencore/protocols/systems/tools/general/common/include/
media_packet.h 46 OSCL_IMPORT_REF void SetTimeval(TimeValue& val)
48 time_val = val;
  /external/ppp/pppd/plugins/radius/
config.c 56 option->val = (void *) strdup(p);
58 option->val = NULL;
78 option->val = (void *) iptr;
95 serv = (SERVER *) option->val;
172 option->val = (void *) iptr;
275 return (char *)option->val;
286 return *((int *)option->val);
297 return (SERVER *)option->val;
  /external/qemu/
device_tree.c 88 const char *property, uint32_t val)
96 return fdt_setprop_cell(fdt, offset, property, val);
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val);
140 len = (unsigned)(this.val);
165 dist = (unsigned)(this.val);
262 this = dcode[this.val + (hold & ((1U << op) - 1))];
272 this = lcode[this.val + (hold & ((1U << op) - 1))];
inftrees.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon4526
  /external/quake/quake/src/WinQuake/
dosisms.h 80 void dos_outportb(int port, int val);
81 void dos_outportw(int port, int val);
  /external/srec/srec/cfront/
cheldsp4.c 79 cepdata val; local
105 val = (cepdata) 0.;
107 val += (d - j) * SHIFT_DOWN(*cpt, 5); /* note d-j from j-d */
108 rg[i] = (cepdata) SHIFT_DOWN((bigdata)(val / a), COSINE_TABLE_SHIFT - 5); /* scale down the deltas here */
119 cepdata val; local
141 val = (cepdata) 0.;
143 val += deldel[j] * SHIFT_DOWN((*cpt), 4); /* Q2 frames forward, not around...? */
145 dd[i] = (cepdata) SHIFT_DOWN((bigdata)(val), COSINE_TABLE_SHIFT - 4);
  /external/stlport/test/eh/
test_construct.h 81 Value_type Val = 0;
82 T t( n, Val );
  /external/stlport/test/unit/
config_test.cpp 55 int val = 0x01020304; local
56 char *ptr = (char*)(&val);
  /external/v8/test/mjsunit/regress/
regress-1050043.js 28 function unsignedShiftRight(val, shift) {
29 return val >>> shift;
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles.html 39 function runTransaction(db, dbName, val)
48 tx.executeSql("INSERT INTO Test VALUES (?);", [val],
  /external/webkit/WebCore/page/animation/
ImplicitAnimation.cpp 238 const TransformOperations* val = &m_fromStyle->transform(); local
241 if (val->operations().isEmpty())
242 val = toVal;
244 if (val->operations().isEmpty())
248 if (val != toVal) {
252 if (val->operations().size() != toVal->operations().size())
256 for (size_t j = 0; j < val->operations().size(); ++j) {
257 if (!val->operations()[j]->isSameType(*toVal->operations()[j]))
  /external/webkit/WebCore/platform/network/win/
CookieJarWin.cpp 43 String val = value; local
44 InternetSetCookie(str.charactersWithNullTermination(), 0, val.charactersWithNullTermination());
  /external/zlib/contrib/infback9/
inftree9.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon7047
  /external/zlib/
inffast.c 134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val);
140 len = (unsigned)(this.val);
165 dist = (unsigned)(this.val);
262 this = dcode[this.val + (hold & ((1U << op) - 1))];
272 this = lcode[this.val + (hold & ((1U << op) - 1))];
inftrees.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon7063
  /frameworks/base/core/java/android/text/
PackedIntVector.java 327 int val = values[i * columns+ j]; local
330 val += valuegap[j + columns];
334 val -= valuegap[j + columns];
337 values[destrow * columns + j] = val;
351 int val = values[i * columns+ j]; local
354 val += valuegap[j + columns];
358 val -= valuegap[j + columns];
361 values[destrow * columns + j] = val;
  /frameworks/base/include/utils/
misc.h 85 unsigned int roundUpPower2(unsigned int val);
89 char* itoa(int val, int base);
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/inc/
console.h 65 U32 low_val; /* Low val for range checking */
66 U32 hi_val; /* Hi val for range checking/max length of string */
  /packages/apps/IM/libwbxml/include/
wbxml_stl.h 96 void push_back(const T& val)
98 Vector<T>::push(val);
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/inc/
console.h 65 U32 low_val; /* Low val for range checking */
66 U32 hi_val; /* Hi val for range checking/max length of string */
  /external/dropbear/
dbutil.c 158 int val; local
161 val = 1;
162 setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (void*)&val, sizeof(val));
167 val = IPTOS_LOWDELAY;
168 setsockopt(sock, IPPROTO_IP, IP_TOS, (void*)&val, sizeof(val));
174 val = 6;
175 setsockopt(sock, SOL_SOCKET, SO_PRIORITY, (void*) &val, sizeof(val));
193 int val; local
610 int val; local
    [all...]
  /external/freetype/src/base/
ftcalc.c 113 FT_UInt32 val, root, newroot, mask; local
118 val = (FT_UInt32)x;
123 if ( newroot <= val )
125 val -= newroot;
760 FT_Long val = 0x10000L * scaling; local
766 xx = FT_MulDiv( a->xx, b->xx, val ) + FT_MulDiv( a->xy, b->yx, val );
767 xy = FT_MulDiv( a->xx, b->xy, val ) + FT_MulDiv( a->xy, b->yy, val );
768 yx = FT_MulDiv( a->yx, b->xx, val ) + FT_MulDiv( a->yy, b->yx, val )
785 FT_Long val = 0x10000L * scaling; local
    [all...]
  /external/libxml2/
entities.c 626 int val = 0, l = 1; local
640 val = (cur[0]) & 0x1F;
641 val <<= 6;
642 val |= (cur[1]) & 0x3F;
645 val = (cur[0]) & 0x0F;
646 val <<= 6;
647 val |= (cur[1]) & 0x3F;
648 val <<= 6;
649 val |= (cur[2]) & 0x3F;
652 val = (cur[0]) & 0x07
    [all...]

Completed in 65 milliseconds

<<21222324252627282930>>