/external/libvterm/src/ |
unicode.c | 74 int last; member in struct:interval 136 if (ucs < table[0].first || ucs > table[max].last) 140 if (ucs > table[mid].last)
|
/external/llvm/utils/ |
bisect | 23 last = None variable 37 print("Last good count: %d" % start)
|
/external/mesa3d/src/glsl/ |
opt_redundant_jumps.cpp | 61 /* If the last instruction in both branches is a 'break' or a 'continue', 102 /* If the last instruction of a loop body is a 'continue', remove it. 104 ir_instruction *const last = local 107 if (last && (last->ir_type == ir_type_loop_jump) 108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) { 109 last->remove();
|
/external/mesa3d/src/mesa/program/ |
sampler.cpp | 42 get_sampler_name(ir_dereference *last, 49 this->last = last; 90 if (ir != last) { 102 ir_dereference *last; member in class:get_sampler_name
|
/external/selinux/checkpolicy/ |
queue.c | 146 queue_node_ptr_t p, last, temp; local 152 last = NULL; 157 if (last) { 158 last->next = p->next; 159 if (last->next == NULL) 160 q->tail = last; 172 last = p;
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ |
NDC.java | 55 int last = next - 1; local 56 String key = PREFIX + last;
|
/external/toybox/toys/lsb/ |
seq.c | 1 /* seq.c - Count from first to last, by increment. 14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last 16 Count from first to last, by increment. Omitted arguments default 17 to 1. Two arguments are used as first and last. Arguments can be 47 double first, increment, last, dd; local 57 default: last = atof(toys.optargs[toys.optc-1]); 66 dd = (double []){first, increment, last}[i]; 84 for (dd=first; (increment>0 && dd<=last) || (increment<0 && dd>=last);
|
/external/webp/src/enc/ |
cost.h | 30 int last; member in struct:VP8Residual
|
/external/webrtc/talk/media/webrtc/ |
webrtcmediaengine_unittest.cc | 67 const std::string* last = nullptr; local 69 if (last && *last > extension.name) { 72 last = &extension.name;
|
/external/wpa_supplicant_8/hs20/server/www/ |
spp.php | 103 $last = exec("$osu_root/spp/hs20_spp_server -r$osu_root -f/tmp/hs20_spp_server.log", $output, $ret); variable
|
/external/wpa_supplicant_8/src/drivers/ |
driver_common.c | 166 int last; local 193 last = *end == '\0'; 211 if (last)
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_methods.c | 108 struct eap_method *m, *last = NULL; local 123 last = m; 126 if (last) 127 last->next = method;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_PutVLCBits.c | 60 * [in] maxStoreRunL0 Max store possible (considering last and inter/intra) 61 * for last = 0 62 * [in] maxStoreRunL1 Max store possible (considering last and inter/intra) 63 * for last = 1 67 * (considering last and inter/intra status) for last = 0 71 * (considering last and inter/intra status) for last = 1 73 * armVCM4P2_Huff_Tables_VLC.c for last == 0 74 * [in] pVlcTableL0 VLC table for last == 123 OMX_U8 last = 0, first = 1, fMode; local [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListScrollListener.java | 66 int last = firstCell + cellCount - 1; local 67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
|
/hardware/qcom/display/msm8084/libqdutils/ |
cb_utils.cpp | 46 size_t last = list->numHwLayers - 1; local 47 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame; 53 for(size_t i = 0 ; i < last; i++) { 64 for (size_t i = 0 ; i < last; i++) {
|
/hardware/qcom/display/msm8226/libqdutils/ |
cb_utils.cpp | 46 size_t last = list->numHwLayers - 1; local 47 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame; 53 for(size_t i = 0 ; i < last; i++) { 64 for (size_t i = 0 ; i < last; i++) {
|
/hardware/qcom/display/msm8909/libqdutils/ |
cb_utils.cpp | 62 size_t last = list->numHwLayers - 1; local 63 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame; 78 for(size_t i = 0 ; i < last; i++) { 90 for (size_t i = 0 ; i < last; i++) {
|
/hardware/qcom/display/msm8994/libqdutils/ |
cb_utils.cpp | 46 size_t last = list->numHwLayers - 1; local 47 hwc_rect_t fbFrame = list->hwLayers[last].displayFrame; 53 for(size_t i = 0 ; i < last; i++) { 65 for (size_t i = 0 ; i < last; i++) {
|
/libcore/ojluni/src/main/java/java/text/ |
CharacterIterator.java | 54 * by calling setIndex(), first(), and last(). 76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) { 126 * @return the last character in the text, or DONE if the text is empty 129 public char last(); method in interface:CharacterIterator 177 * @return the index after the last character in the text
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/ |
iter_iter_pointer.pass.cpp | 29 typename S::const_iterator last = s.begin() + pos1 + n1; local 30 typename S::size_type xlen = last - first; 31 s.replace(first, last, str);
|
iter_iter_size_char.pass.cpp | 30 typename S::const_iterator last = s.begin() + pos1 + n1; local 31 typename S::size_type xlen = last - first; 32 s.replace(first, last, n2, c);
|
iter_iter_string.pass.cpp | 29 typename S::const_iterator last = s.begin() + pos1 + n1; local 30 typename S::size_type xlen = last - first; 31 s.replace(first, last, str);
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
test_fallback_malloc.pass.cpp | 44 const size_t *last = first + len; local 47 for ( const size_t *iter = first; iter != last; ++iter ) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
for_each.hpp | 98 typedef typename end<Sequence>::type last; typedef 100 aux::for_each_impl< boost::is_same<first,last>::value > 101 ::execute(static_cast<first*>(0), static_cast<last*>(0), static_cast<TransformOp*>(0), f);
|
/toolchain/binutils/binutils-2.25/gold/ |
descriptors.cc | 238 int last = -1; local 252 if (last < 0) 255 this->open_descriptors_[last].stack_next = pod->stack_next; 260 last = i;
|