/external/webrtc/webrtc/base/ |
random.cc | 36 uint32_t Random::Rand(uint32_t low, uint32_t high) { 37 RTC_DCHECK(low <= high); 38 return Rand(high - low) + low; 41 int32_t Random::Rand(int32_t low, int32_t high) { 42 RTC_DCHECK(low <= high); 45 // high - low might be negative as an int, it is the correct difference 47 return Rand(high - low) + low;
|
/device/asus/fugu/recovery/ |
fw_version_check.cpp | 132 * 01 SCU Boot Strap Firmware Minor Revision High 134 * 03 SCU Boot Strap Firmware Major Revision High 137 * 05 SCU Firmware Minor Revision High 139 * 07 SCU Firmware Major Revision High 142 * 09 IA Firmware Minor Revision High 144 * 11 IA Firmware Major Revision High 147 * 13 Validation Hooks Firmware Minor Revision High 149 * 15 Validation Hooks Firmware Major Revision High 152 * 17 IFWI Firmware Minor Revision High 154 * 19 IFWI Firmware Major Revision High [all...] |
/external/valgrind/docs/internals/ |
s390-opcodes.csv | 28 bxh,"branch on index high",implemented, 246 brxh,"branch relative on index high",implemented, 259 tmlh,"test under mask low high",implemented, 424 brxhg,"branch relative on index high 64",implemented, 426 bxhg,"branch on index high 64",implemented, 433 stmh,"store multiple high",implemented, 435 lmh,"load multiple high",implemented, 444 clmh,"compare logical characters under mask high",implemented, 445 stcmh,"store characters under mask high",implemented, 446 icmh,"insert characters under mask high",implemented [all...] |
/external/selinux/libsepol/src/ |
context_record.c | 212 char *tmp = NULL, *low, *high; local 234 if (!(high = strchr(low, ':'))) 237 *high++ = '\0'; 240 low = high; 243 if (!(high = strchr(low, ':'))) 246 *high++ = '\0'; 249 low = high; 252 if (!(high = strchr(low, ':'))) { 256 *high++ = '\0'; 259 low = high; [all...] |
/frameworks/base/core/java/android/hardware/camera2/params/ |
HighSpeedVideoConfiguration.java | 28 * {@link CameraCharacteristics#CONTROL_AVAILABLE_HIGH_SPEED_VIDEO_CONFIGURATIONS high speed video 68 * Return the width of the high speed video configuration. 77 * Return the height of the high speed video configuration. 86 * Return the minimum frame per second of the high speed video configuration. 95 * Return the maximum frame per second of the high speed video configuration. 104 * Convenience method to return the size of this high speed video configuration. 113 * Convenience method to return the max batch size of this high speed video configuration. 115 * @return the maximal batch size for this high speed video configuration 122 * Convenience method to return the FPS range of this high speed video configuration. 124 * @return a Range with high bound >= {@value #HIGH_SPEED_MAX_MINIMAL_FPS [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
netcontext.py | 26 port_range = namedtuple("port_range", ["low", "high"]) 161 low, high = self.ports 163 if low == high: 166 return "portcon {0.protocol} {1}-{2} {0.context}".format(self, low, high) 169 return hash("portcon|{0.protocol}|{1.low}|{1.high}".format(self, self.ports)) 184 Return: Tuple(low, high) 186 high The high port of the range. 189 high = self.qpol_symbol.high_port(self.policy) 190 return port_range(low, high) [all...] |
/external/google-breakpad/src/processor/ |
contained_range_map-inl.h | 59 AddressType high = base + size - 1; local 62 if (size <= 0 || high < base) { 68 // << HexString(size) << ", " << HexString(high); 76 MapIterator iterator_high = map_->lower_bound(high); 86 // containing child's high address. 87 if (iterator_base->second->base_ == base && iterator_base->first == high) { 99 // is higher than the new range's high address. Set contains_high to true 103 high >= iterator_high->second->base_; 108 (contains_high && high < iterator_high->first)) { 140 // Store the new range in the map by its high address. Any children tha [all...] |
/external/libvpx/libvpx/ |
rate_hist.c | 24 int high; member in struct:hist_bucket 58 hist->bucket[i].high = 0; 117 if (hist->bucket[idx].high < avg_bitrate) 118 hist->bucket[idx].high = (int)avg_bitrate; 160 bucket[merge_bucket].high = bucket[small_bucket].high; 163 bucket[small_bucket].high = bucket[merge_bucket].high; 168 assert(bucket[merge_bucket].low != bucket[merge_bucket].high); 196 switch ((int)(log(bucket[buckets - 1].high) / log(10)) + 1) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
rate_hist.c | 24 int high; member in struct:hist_bucket 58 hist->bucket[i].high = 0; 114 if (hist->bucket[idx].high < avg_bitrate) 115 hist->bucket[idx].high = (int)avg_bitrate; 157 bucket[merge_bucket].high = bucket[small_bucket].high; 160 bucket[small_bucket].high = bucket[merge_bucket].high; 165 assert(bucket[merge_bucket].low != bucket[merge_bucket].high); 193 switch ((int)(log(bucket[buckets - 1].high) / log(10)) + 1) [all...] |
/toolchain/binutils/binutils-2.25/elfcpp/ |
sparc.h | 61 R_SPARC_HI22 = 9, // High 22 bit 77 R_SPARC_HIPLT22 = 25, // High 22 bit PLT entry 80 R_SPARC_PCPLT22 = 28, // PC rel high 22 bit PLT entry 87 R_SPARC_HM10 = 35, // High middle 10 bits of ... 90 R_SPARC_PC_HM10 = 38, // High middle 10 bit of ... 100 R_SPARC_HIX22 = 48, // High 22 bit complemented 102 R_SPARC_H44 = 50, // Direct high 12 of 44 bit 108 R_SPARC_TLS_GD_HI22 = 56, // Initial General Dynamic reloc, high 22-bit 112 R_SPARC_TLS_LDM_HI22 = 60, // Initial Local Dynamic reloc, high 22-bit 116 R_SPARC_TLS_LDO_HIX22 = 64, // Initial Local Dynamic, high extended 22-bi [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterToUTF8Buffered.java | 123 * the 16 low-order bits of the given integer value; the 16 high-order bits 214 // Adjust the end of the chunk if it ends on a high char 231 * and it is the high char of a high/low pair with 234 * The char array incorrectly ends in a high char 235 * of a high/low surrogate pair, but there is 236 * no corresponding low as the high is the last char 281 * Unicode: [1101 10ww] [wwzz zzyy] (high surrogate) 287 char high, low; local 288 high = c 415 char high, low; local [all...] |
/external/compiler-rt/lib/builtins/ |
muldi3.c | 31 r.s.high = t >> bits_in_word_2; 36 r.s.high += t >> bits_in_word_2; 37 r.s.high += (a >> bits_in_word_2) * (b >> bits_in_word_2); 54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
|
multi3.c | 33 r.s.high = t >> bits_in_dword_2; 38 r.s.high += t >> bits_in_dword_2; 39 r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2); 54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
random.h | 57 * @param high Upper limit 61 inline double rand_double(double high = 1.0, double low = 0) 63 return low + ((high-low) * (std::rand() / (RAND_MAX + 1.0))); 68 * @param high Upper limit 72 inline int rand_int(int high = RAND_MAX, int low = 0) 74 return low + (int) ( double(high-low) * (std::rand() / (RAND_MAX + 1.0)));
|
/external/vixl/examples/ |
check-bounds.cc | 33 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high) 37 // high -> x2 43 // Now we will compare 'value' and 'high' (x0 and x2) but only if the 'pl' 63 uint64_t value, uint64_t low, uint64_t high) { 66 simulator->set_xreg(2, high); 71 low, high);
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
matrix_integer.hpp | 60 /// High-precision signed integer 2x2 matrix. 64 /// High-precision signed integer 3x3 matrix. 68 /// High-precision signed integer 4x4 matrix. 72 /// High-precision signed integer 2x2 matrix. 76 /// High-precision signed integer 2x3 matrix. 80 /// High-precision signed integer 2x4 matrix. 84 /// High-precision signed integer 3x2 matrix. 88 /// High-precision signed integer 3x3 matrix. 92 /// High-precision signed integer 3x4 matrix. 96 /// High-precision signed integer 4x2 matrix [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
ResponseListener.java | 31 * Note that this is typically invoked on the camera thread and at high 41 * Note that this is typically invoked on the camera thread and at high 51 * Note that this is typically invoked on the camera thread and at high 61 * Note that this is typically invoked on the camera thread and at high 71 * Note that this is typically invoked on the camera thread and at high 81 * Note that this is typically invoked on the camera thread and at high
|
/device/google/dragon/audio/hal/dsp/ |
crossover.h | 36 * \-- hp2 ------> HIGH (2) 51 * freq2 - The normalized frequency splits mid and high band. 61 * data2 - The place to store high band output.
|
/external/libchrome/base/timer/ |
hi_res_timer_manager_unittest.cc | 36 // The manager has the high resolution clock enabled now. 41 // Activate the high resolution timer. 55 // De-activate the high resolution timer.
|
/external/ppp/pppd/ |
md4.h | 39 ** If count is not a multiple of 8, MD4Update uses high bits of 50 ** Order is from low-order byte of buffer[0] to high-order byte 52 ** Each byte is printed with high-order hexadecimal digit first.
|
/external/selinux/checkpolicy/ |
policy_define.h | 46 int define_port_context(unsigned int low, unsigned int high); 48 int define_iomem_context(uint64_t low, uint64_t high); 49 int define_ioport_context(unsigned long low, unsigned long high);
|
/external/selinux/libsemanage/man/man3/ |
semanage_port.3 | 86 return the high port number for this port range 91 set the port number (same low and high) for this port range 96 set the low and high port number for this port range
|
/external/skia/gm/ |
imagesource2.cpp | 16 // is shifted for high quality mode between cpu and gpu. 32 // Create an image with high frequency vertical stripes 92 DEF_GM(return new ImageSourceGM("high", kHigh_SkFilterQuality);)
|
/external/sonic/debian/ |
control | 18 high quality at speed up factors well over 2X. 30 high quality at speed up factors well over 2X. 41 high quality at speed up factors well over 2X.
|
/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationComparator.java | 31 // by importance, high to low 39 // by priority, high to low 46 // by priority, high to low
|