/external/llvm/test/MC/AsmParser/ |
H A D | directive_rept-diagnostics.s | 24 .global negative 25 .type negative,@object 26 negative: label 29 # CHECK: error: Count is negative
|
/external/proguard/src/proguard/gui/ |
H A D | FilterBuilder.java | 54 StringBuffer negative = new StringBuffer(); 56 buildFilter("", positive, negative); 58 return positive.length() <= negative.length() ? 60 negative.toString(); 69 * @param negative the filter to be extended, assuming the matching 74 StringBuffer negative) 119 // Extend the negative filter with exceptions and return. 120 if (negative.length() > 0) 122 negative.append(','); 124 negative 72 buildFilter(String prefix, StringBuffer positive, StringBuffer negative) argument [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
H A D | JoyAxisTrigger.java | 40 private final boolean negative; field in class:JoyAxisTrigger 46 public JoyAxisTrigger(int joyId, int axisId, boolean negative) { argument 49 this.negative = negative; 52 public static int joyAxisHash(int joyId, int joyAxis, boolean negative){ argument 54 return (2048 * joyId) | (negative ? 1280 : 1024) | (joyAxis & 0xff); 66 return negative; 70 return "JoyAxis[joyId="+joyId+", axisId="+axisId+", neg="+negative+"]"; 74 return joyAxisHash(joyId, axisId, negative);
|
H A D | MouseAxisTrigger.java | 47 private boolean negative; field in class:MouseAxisTrigger 53 * @param negative True if listen to negative axis events, false if 56 public MouseAxisTrigger(int mouseAxis, boolean negative){ argument 61 this.negative = negative; 69 return negative; 73 String sign = negative ? "Negative" : "Positive"; 82 public static int mouseAxisHash(int mouseAxis, boolean negative){ argument 84 return (negative [all...] |
/external/valgrind/VEX/priv/ |
H A D | host_generic_maddf.c | 85 unsigned int negative:1; member in struct:vg_ieee754_double::__anon18108 93 unsigned int negative:1; 303 if (v.ieee.negative)
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
H A D | byte_io_unittest.cc | 28 T CreateTestValue(bool negative, uint8_t num_bytes) { argument 31 val = (val << 8) + (negative ? (0xFF - i) : (i + 1)); 33 if (negative && std::numeric_limits<T>::is_signed) { 57 // Test both for values that are positive and negative (if signed) 59 bool negative = neg > 0; local 62 T test_value = CreateTestValue<T>(negative, B); 79 // Test both for values that are positive and negative (if signed). 81 bool negative = neg > 0; local 84 T test_value = CreateTestValue<T>(negative, B);
|
/external/dng_sdk/source/ |
H A D | dng_opcode_list.cpp | 112 dng_negative &negative, 121 if (opcode.AboutToApply (host, negative)) 125 negative, 111 Apply(dng_host &host, dng_negative &negative, AutoPtr<dng_image> &image) argument
|
H A D | dng_color_spec.cpp | 66 dng_color_spec::dng_color_spec (const dng_negative &negative, argument 69 : fChannels (negative.ColorChannels ()) 125 if (negative. CameraCalibrationSignature () == 129 if (negative.CameraCalibration1 ().Rows () == fChannels && 130 negative.CameraCalibration1 ().Cols () == fChannels) 133 fCameraCalibration1 = negative.CameraCalibration1 (); 137 if (negative.CameraCalibration2 ().Rows () == fChannels && 138 negative.CameraCalibration2 ().Cols () == fChannels) 141 fCameraCalibration2 = negative.CameraCalibration2 (); 152 fAnalogBalance [j] [j] = negative [all...] |
H A D | dng_host.cpp | 202 bool dng_host::SaveLinearDNG (const dng_negative & /* negative */) const 521 dng_negative &negative, 526 negative, 520 ApplyOpcodeList(dng_opcode_list &list, dng_negative &negative, AutoPtr<dng_image> &image) argument
|
H A D | dng_jpeg_image.cpp | 166 const dng_negative &negative, 207 image.Bounds ().Size () == negative.OriginalDefaultFinalSize (); 209 if (negative.ColorimetricReference () == crSceneReferred) 165 Encode(dng_host &host, const dng_negative &negative, dng_image_writer &writer, const dng_image &image) argument
|
H A D | dng_validate.cpp | 127 // Read into the negative. 129 AutoPtr<dng_negative> negative; local 144 negative.Reset (host.Make_dng_negative ()); 146 negative->Parse (host, stream, info); 148 negative->PostParse (host, stream, info); 154 negative->ReadStage1Image (host, stream, info); 163 negative->ReadTransparencyMask (host, stream, info); 167 negative->ValidateRawImageDigest (host); 178 const dng_image &stage1 = *negative->Stage1Image (); 194 negative [all...] |
H A D | dng_opcodes.cpp | 117 dng_negative &negative) 123 negative.SetIsPreview (true); 142 else if (!IsValidForNegative (negative)) 227 dng_negative & /* negative */, 256 dng_negative &negative, 264 , fNegative (negative) 360 dng_negative &negative, 397 negative, 432 dng_negative &negative, 438 , fNegative (negative) 116 AboutToApply(dng_host &host, dng_negative &negative) argument 255 dng_filter_opcode_task(dng_filter_opcode &opcode, dng_negative &negative, const dng_image &srcImage, dng_image &dstImage) argument 359 Apply(dng_host &host, dng_negative &negative, AutoPtr<dng_image> &image) argument 431 dng_inplace_opcode_task(dng_inplace_opcode &opcode, dng_negative &negative, dng_image &image) argument 533 Apply(dng_host &host, dng_negative &negative, AutoPtr<dng_image> &image) argument [all...] |
H A D | dng_render.cpp | 745 const dng_negative &negative, 766 const dng_negative &negative, 773 , fNegative (negative ) 940 // If there is any negative exposure compenation to perform 1204 const dng_negative &negative) 1207 , fNegative (negative) 764 dng_render_task(const dng_image &srcImage, dng_image &dstImage, const dng_negative &negative, const dng_render ¶ms, const dng_point &srcOffset) argument 1203 dng_render(dng_host &host, const dng_negative &negative) argument
|
/external/google-breakpad/src/processor/ |
H A D | postfix_evaluator-inl.h | 293 bool negative; local 295 negative = true; 298 negative = false; 304 if (negative)
|
/external/v8/src/ |
H A D | conversions-inl.h | 33 inline double SignedZero(bool negative) { argument 34 return negative ? uint64_to_double(Double::kSignMask) : 0.0; 50 bool negative = x < 0; local 51 if (negative) { 64 return negative ? ~result + 1 : result; 205 bool negative, 212 if (current == end) return SignedZero(negative); 290 if (negative) { 298 return std::ldexp(static_cast<double>(negative ? -number : number), exponent); 314 bool negative 202 InternalStringToIntDouble(UnicodeCache* unicode_cache, Iterator current, EndMark end, bool negative, bool allow_trailing_junk) argument [all...] |
/external/bison/lib/ |
H A D | strtol.c | 124 /* True if negative values of the signed integer type T use two's 241 int negative; local 298 negative = 1; 303 negative = 0; 307 negative = 0; 385 && i > (negative 397 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX; 402 return negative ? -i : i;
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_printf.cc | 46 bool negative) { 49 RAW_CHECK(base == 10 || !negative); 50 RAW_CHECK(absolute_value || !negative); 53 if (negative && minimal_num_length) 55 if (negative && pad_with_zero) 76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); 88 pad_with_zero, false /* negative */); 93 bool negative = (num < 0); local 94 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10, 95 minimal_num_length, pad_with_zero, negative); 44 AppendNumber(char **buff, const char *buff_end, u64 absolute_value, u8 base, u8 minimal_num_length, bool pad_with_zero, bool negative) argument [all...] |
/external/deqp/framework/common/ |
H A D | tcuAstcUtil.cpp | 94 const bool negative = (src & (1 << (numSrcBits-1))) != 0; local 95 return src | (negative ? ~((1 << numSrcBits) - 1) : 0); 2431 // Generate a gradient-like set of HDR void-extent blocks, with values ranging from the largest finite negative to largest finite positive of fp16.
|
/external/lldb/source/Plugins/Process/Utility/ |
H A D | ARMUtils.h | 150 bool negative = BitIsSet(value, 31); local 159 carry_out = (negative ? 1 : 0); 160 return (negative ? 0xffffffff : 0);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_format_rgb9e5.h | 48 unsigned int negative:1; member in struct:__anon13963::__anon13964 54 unsigned int negative:1;
|
/external/openssh/ |
H A D | smult_curve25519_ref.c | 54 unsigned int negative; local 58 negative = -((a[31] >> 7) & 1); 59 for (j = 0;j < 32;++j) a[j] ^= negative & (aorig[j] ^ a[j]);
|
/external/pdfium/third_party/bigint/ |
H A D | BigInteger.hh | 30 enum Sign { negative = -1, zero = 0, positive = 1 }; enumerator in enum:BigInteger::Sign
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
H A D | BC_PDF417ECModulusPoly.cpp | 140 CBC_PDF417ECModulusPoly* poly = other->negative(e);
177 CBC_PDF417ECModulusPoly* CBC_PDF417ECModulusPoly::negative(int32_t& e) {
function in class:CBC_PDF417ECModulusPoly
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | ZoneMeta.java | 774 boolean negative = false; 777 negative = true; 793 String zid = formatCustomID(hour, min, sec, negative); 801 static String formatCustomID(int hour, int min, int sec, boolean negative) { argument 805 if(negative) {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ZoneMeta.java | 773 boolean negative = false; 776 negative = true; 792 String zid = formatCustomID(hour, min, sec, negative); 800 static String formatCustomID(int hour, int min, int sec, boolean negative) { argument 804 if(negative) {
|