/external/libedit/src/ |
keymacro.h | 53 keymacro_value_t val; /* Local conversion buffer */ member in struct:el_keymacromacro_t
|
/external/libevent/ |
evutil_rand.c | 150 int val; local 155 val = arc4_seeded_ok ? 0 : -1; 157 return val;
|
/external/libmicrohttpd/src/microspdy/ |
io_raw.c | 65 int val = 1; local 76 ret = setsockopt(session->socket_fd, IPPROTO_TCP, TCP_NODELAY, &val, (socklen_t)sizeof(val)); 165 int val = 1; local 168 ret = setsockopt(session->socket_fd, IPPROTO_TCP, TCP_CORK, &val, (socklen_t)sizeof(val)); 184 int val = 0; local 187 ret = setsockopt(session->socket_fd, IPPROTO_TCP, TCP_CORK, &val, (socklen_t)sizeof(val));
|
/external/libopus/celt/ |
laplace.c | 54 int val = *value; local 56 if (val) 60 s = -(val<0); 61 val = (val+s)^s; 65 for (i=1; fs > 0 && i < val; i++) 78 di = IMIN(val - i, ndi_max - 1); 96 int val=0; local 103 val++; 113 val++ [all...] |
/external/libopus/celt/tests/ |
test_unit_laplace.c | 59 int val[10000], decay[10000]; local 64 val[0] = 3; decay[0] = 6000; 65 val[1] = 0; decay[1] = 5800; 66 val[2] = -1; decay[2] = 5600; 69 val[i] = rand()%15-7; 73 ec_laplace_encode(&enc, &val[i], 84 if (d != val[i]) 86 fprintf (stderr, "Got %d instead of %d\n", d, val[i]);
|
/external/libselinux/src/ |
selinux_netlink.h | 24 int32_t val; member in struct:selnl_msg_setenforce
|
/external/libunwind/src/aarch64/ |
Gresume.c | 137 unw_word_t val; local 152 if (tdep_access_reg (c, reg, &val, 0) >= 0) 153 as->acc.access_reg (as, reg, &val, 1, arg);
|
/external/libunwind/src/arm/ |
Gresume.c | 118 unw_word_t val; local 133 if (tdep_access_reg (c, reg, &val, 0) >= 0) 134 as->acc.access_reg (as, reg, &val, 1, arg);
|
/external/libunwind/src/hppa/ |
Gresume.c | 99 unw_word_t val; local 117 if (tdep_access_reg (c, reg, &val, 0) >= 0) 118 (*access_reg) (as, reg, &val, 1, arg);
|
/external/libunwind/src/sh/ |
Gresume.c | 125 unw_word_t val; local 140 if (tdep_access_reg (c, reg, &val, 0) >= 0) 141 as->acc.access_reg (as, reg, &val, 1, arg);
|
/external/libunwind/src/x86_64/ |
Gresume.c | 76 unw_word_t val; local 94 if (tdep_access_reg (c, reg, &val, 0) >= 0) 95 (*access_reg) (as, reg, &val, 1, arg);
|
/external/libunwind/tests/ |
test-ptrace-misc.c | 111 int val = argc; local 118 printf ("sum = %d\n", bar (val));
|
/external/libvorbis/lib/ |
analysis.c | 91 float val; local 93 val=-140.; 95 val=todB(v+j); 96 fprintf(of,"%f\n",val);
|
/external/lzma/CPP/Common/ |
CrcReg.cpp | 61 UInt32 val = CRC_GET_DIGEST(_crc);
local 62 SetUi32(digest, val);
|
/external/lzma/CPP/Windows/Control/ |
ToolBar.h | 21 DWORD val = GetButtonSize();
local 22 size->cx = LOWORD(val);
23 size->cy = HIWORD(val);
|
/external/mesa3d/src/glsl/tests/ |
copy_constant_to_storage_tests.cpp | 33 const ir_constant *val, 69 ir_constant *val; local 70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val); 72 const unsigned red_zone_size = Elements(storage) - val->type->components(); 74 val->type->components(), 78 val, 79 val->type->base_type, 80 val->type->components()); 82 verify_data(storage, 0, val, red_zone_size); 88 ir_constant *val; local 107 ir_constant *val; local 126 ir_constant *val; local 150 ir_constant *val; local [all...] |
/external/messageformat/java/com/ibm/icu/impl/ |
ICUConfig.java | 55 String val = null; local 59 val = AccessController.doPrivileged(new PrivilegedAction<String>() { 69 val = System.getProperty(name); 72 if (val == null) { 73 val = CONFIG_PROPS.getProperty(name, def); 75 return val;
|
/external/opencv3/3rdparty/libjasper/ |
jas_tvp.c | 105 tvp->val = 0; 126 char *val; local 158 tvp->val = ""; 170 tvp->val = ""; 177 val = p; 188 tvp->val = val; 206 return tvp->val;
|
/external/opencv3/3rdparty/zlib/ |
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:__anon21992
|
/external/opencv3/modules/core/misc/java/src/java/ |
core+Scalar.java | 6 public double val[]; field in class:Scalar 9 val = new double[] { v0, v1, v2, v3 }; 13 val = new double[] { v0, v1, v2, 0 }; 17 val = new double[] { v0, v1, 0, 0 }; 21 val = new double[] { v0, 0, 0, 0 }; 26 val = vals.clone(); 28 val = new double[4]; 35 val[0] = vals.length > 0 ? vals[0] : 0; 36 val[1] = vals.length > 1 ? vals[1] : 0; 37 val[2] = vals.length > 2 ? vals[2] : 0 [all...] |
/external/opencv3/modules/core/test/ |
test_misc.cpp | 25 unsigned int val = cv::saturate_cast<unsigned int>(d); local 27 ASSERT_EQ(0xffffffff, val);
|
/external/opencv3/modules/ts/misc/ |
report.py | 86 val = metrix_table[m][1](case, None, options.units) variable 87 if isinstance(val, float): 88 tbl.newCell(m, "%.2f %s" % (val, options.units), val) 90 tbl.newCell(m, val, val)
|
/external/opencv3/samples/cpp/tutorial_code/photo/hdr_imaging/ |
hdr_imaging.cpp | 47 float val; local 48 while(list_file >> name >> val) { 51 times.push_back(1 / val);
|
/external/pdfium/third_party/zlib_v128/ |
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:__anon23141
|
/external/protobuf/gtest/include/gtest/ |
gtest-message.h | 121 inline Message& operator <<(const T& val) { 122 ::GTestStreamToHelper(ss_, val); 156 Message& operator <<(BasicNarrowIoManip val) { 157 *ss_ << val; local
|