Searched defs:d1 (Results 1 - 14 of 14) sorted by path

/device/google/contexthub/firmware/os/drivers/rohm_rpr0521/
H A Drohm_rpr0521.c347 float d1 = (float)als1 * invGain[ROHM_RPR0521_GAIN_ALS1]; local
348 float ratio = d1 / d0;
368 return c1 * d0 + c2 * d1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c841 int d1, d2, d3, d4; local
907 if (sscanf(name, "%d.%d.%d.%d%c", &d1, &d2, &d3, &d4, &ch) == 4 &&
908 0 <= d1 && d1 <= 255 && 0 <= d2 && d2 <= 255 &&
913 ((long) d1 << 24) | ((long) d2 << 16) |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dacceler.c88 dfa *d1 = PyGrammar_FindDFA(g, type); local
95 if (testbit(d1->d_first, ibit)) {
H A Dfirstsets.c40 dfa *d1; local
84 d1 = PyGrammar_FindDFA(g, type);
85 if (d1->d_first == dummy) {
91 if (d1->d_first == NULL)
92 calcfirstset(g, d1);
94 d1->d_first, nbits);
H A Dparser.c250 dfa *d1 = PyGrammar_FindDFA( local
252 if ((err = push(&ps->p_stack, nt, d1,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_datetime.py848 d1 = self.theclass(1600+i, 12, 31)
849 self.assertEqual(d.isocalendar()[1:], d1.isocalendar()[1:])
2115 # d0 and d1 equal after adjustment
2123 d1 = base.replace(minute=9)
2125 for x in d0, d1, d2:
2126 for y in d0, d1, d2:
2137 d1 = base.replace(minute=9, tzinfo=OperandDependentOffset()) variable in class:TZInfoBase.test_aware_compare.OperandDependentOffset
2139 for x in d0, d1, d2:
2140 for y in d0, d1, d2:
2142 if (x is d0 or x is d1) an
[all...]
H A Dtest_userdict.py7 d1 = {"one": 1} variable
20 u1 = UserDict.UserDict(d1)
47 self.assertEqual(repr(u1), repr(d1))
51 all = [d0, d1, d2, u, u0, u1, u2, uu, uu0, uu1, uu2]
99 self.assertEqual(i in u1, i in d1)
103 self.assertEqual(u1.has_key(i), d1.has_key(i))
120 self.assertEqual(u1.get(i), d1.get(i))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dsocketmodule.c783 int d1, d2, d3, d4; local
849 if (sscanf(name, "%d.%d.%d.%d%c", &d1, &d2, &d3, &d4, &ch) == 4 &&
850 0 <= d1 && d1 <= 255 && 0 <= d2 && d2 <= 255 &&
855 ((long) d1 << 24) | ((long) d2 << 16) |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dacceler.c88 dfa *d1 = PyGrammar_FindDFA(g, type); local
95 if (testbit(d1->d_first, ibit)) {
H A Dfirstsets.c40 dfa *d1; local
84 d1 = PyGrammar_FindDFA(g, type);
85 if (d1->d_first == dummy) {
91 if (d1->d_first == NULL)
92 calcfirstset(g, d1);
94 d1->d_first, nbits);
H A Dparser.c250 dfa *d1 = PyGrammar_FindDFA( local
252 if ((err = push(&ps->p_stack, nt, d1,
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dmain.c1250 eMsgd2( char *s, int d1,int d2) argument
1252 eMsgd2( s, d1, d2 )
1254 int d1;
1260 sprintf(buf, s, d1, d2);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregcomp.c97 distance_add(OnigDistance d1, OnigDistance d2) argument
99 if (d1 == ONIG_INFINITE_DISTANCE || d2 == ONIG_INFINITE_DISTANCE)
102 if (d1 <= ONIG_INFINITE_DISTANCE - d2) return d1 + d2;
4052 comp_distance_value(MinMaxLen* d1, MinMaxLen* d2, int v1, int v2) argument
4057 v1 *= distance_value(d1);
4063 if (d2->min < d1->min) return 1;
4064 if (d2->min > d1->min) return -1;
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
H A Dmisc.c659 ULong d0, d1; local
662 #define d1 word1(d) macro
677 d1 = (UINT32)(y << ((32-Ebits) + k) | w >> (Ebits - k));
684 d1 = (UINT32)(z << k | y >> (32 - k));
688 d1 = (UINT32)z;
696 d1 = z << k + 16 - Ebits | w << k - Ebits | y >> 16 + Ebits - k;
704 d1 = w << k + 16 | y << k;
709 word1(d) = d1 >> 16 | d1 << 16;
714 #undef d1 macro
731 ULong d0, d1; local
736 #define d1 macro
854 #undef d1 macro
[all...]

Completed in 2103 milliseconds